上面是一个select,,它的属性默认设置为只读,现在我想这只他为可以读的,,在其他浏览器都可以,,但是就在IE9/10都不可以,,请问这怎么设置
我试过以下几种方法$('#areaSelect').attr("disabled",false); $('#areaSelect').removeAttr("disabled"); $('#areaSelect').attr("disabled","");
都不行。。。。
用原生的试试
$('#areaSelect').prop({disabled:false});
用原生的试试
$('#areaSelect').prop({disabled:false});