首页 >web前端 >html教程 >js控制button点击问题_html/css_WEB-ITnose

js控制button点击问题_html/css_WEB-ITnose

WBOY
WBOY原创
2016-06-24 12:23:331116浏览

下面是代码,为什么没用?

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


回复讨论(解决方案)

是要禁止button?

无标题文档<input type="text" id="phones" /><input type="button" value="发送验证码" onclick="phone_Change('2k3R4ru')" id="oc_phone"/>

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

这样

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

这样
恩 谢谢

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn