我在2行简单代码后将SELECT值设置为变量时出现此错误:
不推荐使用属性'指定属性。它总是返回true
代码:
var strMe = $("#o_productCategory").val();
alert(strMe);
使用o_productCategory.value;
时没有出现错误消息,但不知道它在不同的浏览器中不起作用。
答案 0 :(得分:1)
尝试:
$('#o_productCategory :selected').text();
注意:仅在值和文本相同时才有效...