当前位置: 代码迷 >> JavaScript >> js让旋钮几秒钟失效
  详细解决方案

js让旋钮几秒钟失效

热度:205   发布时间:2012-11-01 11:11:31.0
js让按钮几秒钟失效

input type="button" value=" 失效5秒 " onclick="this.disabled=true;setTimeout('this.disabled=false',5000);">

?

<input type="button" value=" 失效5秒 " onclick="{
? this.disabled = true;
? var me = this;
? setTimeout(function() { me.disabled = false; }, 5000);
}">

?

<input type="button" value="失效5秒" onclick="setTimeout((function(me){me.disabled=true;return function(){me.disabled=false;};})(this),5000);">

<input type="button" value=" 失效5秒 " id="me" onclick="this.disabled=true;setTimeout('me.disabled=false',5000);">


<input type="button" value="失效5秒" onclick="setTimeout((function(Mes){Mes.disabled=true;return function(){Mes.disabled=false;};})(this),5000);">

  相关解决方案