Heim >Web-Frontend >js-Tutorial >Javascript:为input设置readOnly属性(示例讲解)_javascript技巧
1、js为设置readOnly属性
var cObj = document.getElementById("content");
cObj.setAttribute("readOnly",'true');
2、js移除readOnly属性
var cObj = document.getElementById("content");
cObj.removeAttribute("readOnly");
注意:一定要注意readOnly大小写!!!