js動態設定input文字框的readonly屬性
使用js動態設定元素的屬性是常用的操作,下面介紹一下如何使用js設定文字框的readonly屬性。
一.設定屬性:
[JavaScript] 純文字檢視 複製程式碼var obj= document.getElementById("txt"); obj.setAttribute("readOnly",'true');
二.刪除屬性:
[JavaScript] 純文字檢視 複製程式碼var obj=document.getElementById("txt"); obj.removeAttribute("readOnly");
相關文章
- <input>文字框的readonly和disabled屬性區別
- javascript動態設定input文字框的值JavaScript
- JavaScript 動態設定input文字框只讀JavaScript
- <input> readonly屬性
- 文字框的readonly和disabled屬性區別
- css設定具有指定type屬性值的input文字框的樣式CSS
- JavaScript設定input文字框只讀JavaScript
- CSS 設定input文字框樣式CSS
- css設定input文字框樣式CSS
- 設定input文字框只讀效果
- input屬性disabled和readonly的區別(轉)
- 為input文字框設定背景圖片
- 設定input type為text的文字框樣式
- 單獨設定input text文字框樣式
- 動態修改input元素type屬性值
- HTML中設定input等文字框為不可操作HTML
- jQuery動態建立html元素並設定屬性jQueryHTML
- 純css設定input文字框獲取焦點時的樣式CSS
- js動態建立文字框程式碼例項JS
- 動態設定元素的disabled屬性可用和不可用
- QT QLable屬性設定(尺寸,邊框等)QT
- 如何使用CSS設定文字框的邊框CSS
- CSS input文字框樣式CSS
- CSS input 文字框樣式CSS
- input 文字框內容居中
- CSS匹配input text文字框CSS
- input只能輸入文字框
- 如何使用angularjs實現文字框設定值AngularJS
- input文字框的實際寬度包括邊框的
- asp.net input文字框只能輸入數字jsASP.NETJS
- javascript input文字框新增提示文字效果JavaScript
- 搜尋框設定背景圖 通過設定placeholder屬性新增
- Linux下設定終端文字的顯示屬性Linux
- JavaScript獲取input text文字框JavaScript
- 更改input的type屬性
- input框type=file設定cursor:pointer的問題
- disabled和readonly屬性區別
- js如何獲取給定屬性的屬性值JS