$(lblName).innerText = $(ddlNameList).options[$(ddlNameList).selectedIndex].text;
有没有人知道为什么上面的代码行在chrome中工作但在Internet Explorer 11中失败并出现以下错误
JavaScript运行时错误:无法获取未定义或空引用的属性“选项”
答案 0 :(得分:2)
试试这个:
$(lblName).innerText = $('#' + ddlNameList + ' option:selected').val();