新文件
頭>
function isreadonly(){
var obj = document .getElementById("使用者名稱");
obj.setAttribute("readOnly",true);
obj.style.backgroundColor="#d2d2d2";
}
function readwrite(){
var obj = document.getElementById("用戶名");
obj.setAttribute("readOnly",false);
obj.style.backgroundColor="#ffffffff";
}
}
腳本>