$(function () { $("#zphone").click(function () { if ($(this).hasclass("click")) { return; } if ($("#18316").val() == '') { alert("请输入手机号"); return; } $(this).addclass("click"); $(this).attr("disable", "disabled"); var time = 60; var tel = $("#18316").val(); sendcode(tel); $(this).text(time + "s后可再发送"); var timer = setinterval(function () { if (time > 0) { time--; $("#zphone").text(time + "s后可发送"); } else { $("#zphone").removeattr("disable"); $("#zphone").removeclass("click"); $("#zphone").text('发送验证码'); clearinterval(timer); } }, 1000); }); function sendcode(tel) { var path= $("#zphone").data("path"); $.post(path+"ajax/handler.ashx", { action: "getcode", mobile: tel }, function (ret) { if (ret == "no") { alert("发送失败");} }); } })