如何使用jquery查找当前所选选项的位置,如果用户选择其他选项,还需要实时更新。
<select id="visa_type_c" title="" name="visa_type_c">
<option selected="selected" value="No Visa" label="No Visa">No Visa</option>
<option value="EU Visa" label="EU Visa">EU Visa</option>
<option value="Easy Visa" label="Easy Visa">Easy Visa</option>
<option value="Hard Visa" label="Hard Visa">Hard Visa</option>
</select>
我看到了其他主题,但它们略有不同,我似乎无法让它适合我。
答案 0 :(得分:6)
可以使用纯JS:
document.getElementById("visa_type_c").onchange = function() {
alert(this.selectedIndex);
}
答案 1 :(得分:6)
$("select").on("change", function(ev) {
console.log(ev.target.selectedIndex);
});
答案 2 :(得分:1)
<a href='javascript:alert($("#visa_type_c option:selected").index())';>click for index</a>
有很多方法可以做到;如果您将其添加到您的页面,它将显示所选的索引。