js为input设置readonly属性,需要注意的要点:readOnly是区分大小写的。
1、js为<input>设置readOnly属性
复制代码 代码示例:
<textarea name="content" id="content" cols="27" rows="6"></textarea>
var cObj = document.getElementById("content");
cObj.setAttribute("readOnly",'true');
2、js移除<input>readOnly属性
复制代码 代码示例:
var cObj = document.getElementById("content");
cObj.removeAttribute("readOnly");
注意:readOnly大小写。