jQuery - 根据下拉列表的选定选项有条件地执行代码

时间:2017-12-04 16:20:56

标签: jquery

我正在执行更改下拉列表的一些代码,具体取决于所选的选项。使用.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
    }
});

0 个答案:

没有答案