我有一个包含以下数据的选择框
<select>
<option>Bill</option>
<option>Ted</option>
<option>Bogus</option>
</select>
当我选择“Bogus”时,我想将2返回给一个函数,因为这是第三项。
知道如何用jQuery做到这一点?像
这样的东西jQuery("#colour").change(function(){
alert( $(this).index );
});
不起作用。
由于
答案 0 :(得分:5)
在完成所有这些jquery业务之后,我们忘记了它之前是如何完成的;; - )
这是
this.selectedIndex
答案 1 :(得分:0)