获取使用jQuery在下拉列表中选择的当前值

前端之家收集整理的这篇文章主要介绍了获取使用jQuery在下拉列表中选择的当前值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的页面上有一组动态生成的下拉框。基本上我克隆他们使用jQuery。现在我想捕获在每个下拉选择的更改事件的值。

我尝试这样的东西没有工作。

$('._someDropDown').live('change',function(e) {
            //debugger;
            var v = $(this);
            alert($(this + ':selected').val());
            alert($(this).val());
        });

我如何完成它?

解决方法

这是你需要的:)
$('._someDropDown').live('change',function(e) {
    console.log(e.target.options[e.target.selectedIndex].text);
});

对于新的jQuery使用

$(document).on('change','._someDropDown',function(e) {
    console.log(this.options[e.target.selectedIndex].text);
});
原文链接:https://www.f2er.com/jquery/185298.html

猜你在找的jQuery相关文章