lBtn").onclick = function () { //start by 2019-12-21 alert("电话正在接通。"); $.post( "/home/Zhuanq/calltest", { tel: $("#telInput").val() }, function (rst) { if (rst == -1) { alert("电话格式错误,可以是座机或者手机号"); return false; } else if (rst == -2) { alert("请输入电话号码"); return false; } else if (rst == 0) { alert("系统繁忙,请稍后再试"); return false; } else { $("#telInput").val(""); return true; } } ); //end by 2019-12-21 };