gpt4 book ai didi

javascript - jQuery 单击事件不适用于选项元素

转载 作者:行者123 更新时间:2023-11-29 17:27:53 25 4
gpt4 key购买 nike

为什么下面的代码不起作用?

$('select option').live('click', function(){
alert('hello')
})

html:

<select class="ok">
<option>5</option>
</select>

示例: http://jsfiddle.net/fQxj7/2/

最佳答案

改为这样做:

$('select').change(function(){
alert('hello');
});

如果您需要知道事件处理程序中的选定值,那么您可以这样做:

$('select').change(function() {
var selectedOption = $(this).val();
});

http://jsfiddle.net/FishBasketGordo/2ABAh/

关于javascript - jQuery 单击事件不适用于选项元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7080213/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com