我如何使用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>


我看过其他线程,但它们略有不同,我似乎无法使其适合我。

最佳答案

$("select").on("change", function(ev) {
    console.log(ev.target.selectedIndex);
});

09-19 13:09