web-dev-qa-db-ja.com

jQueryで特定の<option>が選択されたときに検出する

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>

以下を試しましたが、うまくいかないようです。

何か案は?

29
Philip Morton

これは機能します...選択ボックスで変更イベントが発生するのをリッスンし、発生したら、選択したオプションのid属性を取得します。

$("#type").change(function(){
  var id = $(this).find("option:selected").attr("id");

  switch (id){
    case "trade_buy_max":
      // do something here
      break;
  }
});
47
Ryan

onchangeハンドラーをselectに追加するだけです。

$('#type').change(function(){ 
  if($(this).val() == 2){
     /* Do Something */
  }
});
9
Justin Swartsel

代わりに、その選択時にchangeイベントをバインドし、オプションが選択されているかどうかを確認できます

$("select#type").change(function () {
   if( $("option#trade_buy_max:selected").length )
   {
     // do something here
   }
});
4
Anwar Chandra
$("option#trade_buy_max").change(function () {
    opt = $(this).children("option:selected").attr('id');
    if(opt == '#trade_sell_max'){
        // do stuff
    } 
});

未テストですが、問題なく動作するはずです。

1
inkedmn

change イベントを使用して、選択したオプションのid属性を取得します。

$('#type').change(function () {
  var selectedId = $('option:selected', this).attr('id');

  if (selectedId == "trade_buy_max") {
    // do something
  }
});
1
CMS

.selectを.changeに変更し、#の前にスペースを入れます

0
Amr Elgarhy