我正在使用jQuery 1.9.0
并且我试图在on()
选择内更改选项时触发该方法。它可以工作,live()
但我认为它可能很简单,我没有看到。
这是我的 HTML:
<select class="select_exercise">
<option class="option_exercise">Example 1</option>
<option class="option_exercise">Example 2</option>
</select>
和我的脚本:
$("option.option_exercise").on("change","option.option_exercise",function()
{
alert("i am changing");
});
这是小提琴