首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

js控制button点击有关问题

2013-08-27 
js控制button点击问题下面是代码,为什么没用?input typetext idphones /input typebutton val

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

这样

热点排行