dropinlist的selectedindexchanged事件不适用于jquery

时间:2011-07-19 11:58:23

标签: jquery asp.net

你好,我有dropdownlist。我正在使用jquery插件为dropdownlist提供样式。 jquery插件是 jquery.dd.js 。但我的问题是selectedindexchanged事件在Internet exlorer 8中不起作用,尽管它在其他浏览器中运行良好。

2 个答案:

答案 0 :(得分:18)

试试这个:

$('#yourSelectId').change(function() {
    var selectedVal = $('#yourSelectId option:selected').attr('value');
});

您将获得selectedVal中的值

答案 1 :(得分:1)

认为最好使用.val()

$('#yourSelectId').change(function() {
    var selectedVal = $('#yourSelectId').val();
});