Js设置input readOnly属性值的例子

发布时间:2019-08-08编辑:脚本学堂
分享二个js操作input readOnly属性值的例子,包括设置与移除input的readOnly属性,有需要的朋友参考下。

本节内容:
javascript中为input设置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的大小写