代碼以下:jquery
//移除事件
document.getElementById('mobile-a').onclick=function(){};this
//60秒後把sendCheckMsg事件加上
setTimeout(function(){
$('.mobile-a').text("獲取驗證碼");
document.getElementById('mobile-a').onclick=function(){ sendCheckMsg();};
}, 60000);.net
參考連接:http://www.jb51.net/article/89215.htmhtm
jquery 移除事件:事件
$(this).removeAttr('onclick');rem