JQueryで、IDがtrade_buy_max
のオプションが選択されたときにそれを検出したいのですが。
$(document).ready(function() {
$("option#trade_buy_max").select(function () {
//do something
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<select name='type' id='type'>
<option id='trade_buy' value='1' selected='selected'>Buy</option>
<option id='trade_buy_max' value='1'>Buy max</option>
<option id='trade_sell' value='2'>Sell</option>
<option id='trade_sell_max' value='2'>Sell max</option>
</select>
以下を試しましたが、うまくいかないようです。
何か案は?
これは機能します...選択ボックスで変更イベントが発生するのをリッスンし、発生したら、選択したオプションのid属性を取得します。
$("#type").change(function(){
var id = $(this).find("option:selected").attr("id");
switch (id){
case "trade_buy_max":
// do something here
break;
}
});
onchange
ハンドラーをselect
に追加するだけです。
$('#type').change(function(){
if($(this).val() == 2){
/* Do Something */
}
});
代わりに、その選択時にchange
イベントをバインドし、オプションが選択されているかどうかを確認できます
$("select#type").change(function () {
if( $("option#trade_buy_max:selected").length )
{
// do something here
}
});
$("option#trade_buy_max").change(function () {
opt = $(this).children("option:selected").attr('id');
if(opt == '#trade_sell_max'){
// do stuff
}
});
未テストですが、問題なく動作するはずです。
change
イベントを使用して、選択したオプションのid
属性を取得します。
$('#type').change(function () {
var selectedId = $('option:selected', this).attr('id');
if (selectedId == "trade_buy_max") {
// do something
}
});
.selectを.changeに変更し、#の前にスペースを入れます