日期:2014-05-16  浏览次数:20852 次

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";

这样