为什么以下代码不起作用?
$('select option').live('click', function(){
alert('hello')
})
HTML:
<select class="ok">
<option>5</option>
</select>
答案 0 :(得分:5)
请改为:
$('select').change(function(){
alert('hello');
});
如果您需要知道事件处理程序中的选定值,那么您可以这样做:
$('select').change(function() {
var selectedOption = $(this).val();
});