我正在执行更改下拉列表的一些代码,具体取决于所选的选项。使用.prop(selectedIndex)
是处理此问题的最佳方法吗?
$(document).on('change', '#toggleList', function () {
if ($(this).prop('selectedIndex') == 0 || $(this).prop('selectedIndex') == 2) {
//some code
}
else if ($(this).prop('selectedIndex') == 1) {
//some other code
}
else {
//some other code
}
});