0

所有,我的页面上有多个选择都具有相同的类。该类称为 event_selection。每当有人更改这些选择之一时,我都想使用 jQuery 获取选定的选项值。

我该怎么做呢?

谢谢!

4

2 回答 2

1
$('.event_selection').change(function(){
    alert($(this).val());
});

该线程可能与其他 500 个线程重复...

于 2012-06-28T16:29:31.253 回答
1
$('.event_selection').on('change', function() { // bind change event
  // get the value
  alert( this.value );  // or $(this).val(), but previous one is faster
});
于 2012-06-28T16:29:56.873 回答