当前位置: 代码迷 >> JavaScript >> js中disable的运用
  详细解决方案

js中disable的运用

热度:373   发布时间:2012-09-25 09:55:59.0
js中disable的使用
<input id="mytext" type="text" value="我是不能用的">
<input type="button" value="disabled" onClick="javascript: document.all.mytext.disabled='false'">
<input type="button" value="enable" onClick="javascript: document.all.mytext.removeAttribute('disabled')">

?

  相关解决方案