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')">?