本篇文章主要是對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大小寫!!!