当前位置: 代码迷 >> HTML/CSS >> js控制button点击有关问题
  详细解决方案

js控制button点击有关问题

热度:96   发布时间:2013-08-27 10:20:47.0
js控制button点击问题
下面是代码,为什么没用?
<input type="text" id="phones" /><input type="button" value="发送验证码" onclick="phone_Change('2k3R4ru')" id="oc_phone"/>


function phone_Change(t){

 document.getElementById('oc_phone').disabled=false;
}

------解决方案--------------------

 document.getElementById('oc_phone').disabled = "disabled";

这样
  相关解决方案