单击特定选项值时触发事件

时间:2014-12-24 21:19:25

标签: javascript jquery

我想知道以下是否可行..我想根据在下拉列表中选择的选项来触发不同的事件。到目前为止,我想到了这一点,但当我选择

选项时,什么也没发生
$('#strand_id option[value="5"]:selected').on('click', function(){
  console.log('something just happened!!!')

});

我认为我不能使用更改方法,因为无论选择什么选项,这都将应用相同的事件..(除非有办法?)

任何帮助将不胜感激

由于

1 个答案:

答案 0 :(得分:1)

试试这个:

$('#strand_id').on('click ', function () {
    if (this.value == 5) console.log('something just happened !! !')
});

<强> jsFiddle example