当前位置: 代码迷 >> HTML/CSS >> js统制html中的readonly
  详细解决方案

js统制html中的readonly

热度:33   发布时间:2012-09-14 23:00:49.0
js控制html中的readonly
注意readOnly中的O是大写。
document.getElementById("xxxxx").readOnly = true;
document.getElementById("xxxxx").readOnly = false;
  相关解决方案