同じページに 3 つの選択ボックスがあり、3 つの選択ボックスすべてに jQuery selectbox プラグインを使用したいと考えています。
問題は、プラグインが最初の要素だけで機能することです...残りは正常なままです。
誰かがそれがなぜだか知っていますか?
私のコードは次のようになります。
<select class="ex">
<option>test</option>
<option>test</option>
<option>test</option>
<option>test</option>
</select>
<select class="ex">
<option>test</option>
<option>test</option>
<option>test</option>
<option>test</option>
</select>
<select class="ex">
<option>test</option>
<option>test</option>
<option>test</option>
<option>test</option>
</select>
私のjsコードは次のようになります。
$(".ex").selectbox();