1. ホーム
  2. javascript

[解決済み] ドロップダウンのオプションを選択するためにjQueryを使用するには?

2022-04-24 19:26:06

質問

jQuery で <option> ドロップダウン・ボックスの4番目の項目というように?

<select>
    <option></option>
    <option></option>
    <option></option>
    <option></option>
    <option></option>
</select>

ユーザーがリンクをクリックし、その後に <select> をクリックして選択したかのように、ボックスの値を変更します。 <option> .

解決方法は?

どうですか?

$('select>option:eq(3)').attr('selected', true);

$('select>option:eq(3)').attr('selected', true);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<select>
    <option>1</option>
    <option>2</option>
    <option>3</option>
    <option>4</option>
    <option>5</option>
</select>


最近のバージョンのjqueryでは .prop() の代わりに .attr()

$('select>option:eq(3)').prop('selected', true);

$('select>option:eq(3)').prop('selected', true);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<select>
    <option>1</option>
    <option>2</option>
    <option>3</option>
    <option>4</option>
    <option>5</option>
</select>