js コントロール入力ボックスの読み取り専用実装 example_javascript スキル
js
复制代码代码如下:
新しいドキュメント
<スクリプト言語="JavaScript">
function isreadonly(){
var obj = document.getElementById("username");
obj.setAttribute("readOnly",true);
obj.style.backgroundColor="#d2d2d2";
}
function readwrite(){
var obj = document.getElementById("username");
obj.setAttribute("readOnly",false);
obj.style.backgroundColor="#ffffff";
}