$("#txb2Mobile").formValidator({ onshow: "", onfocus: "请输入手机号码", oncorrect: "" }).inputValidator({ min: 1, max: 11, onerror: "您输入的手机号码长度不合理" }).regexValidator({ regexp: "mobile", datatype: "enum", onerror: "您输入的手机号码格式不正确" })
.ajaxValidator({
type: "post",
url: "Ajax/GetBackPassWord.ashx",
async: false,
datatype: "text",
//data: "action=7&txbCode="+function (){ return $("#txbCode").val()},
//data: "action=7&t=" + ((new Date()).getTime()),
data: {'action':'7', 'txbCode':function (){ return $("#txbCode").val(); }},
success: function (data) {
if (data == "0") return false;
else return true;
},
oncorrect: "手机号码输入正确!",
onerror: "手机号码不存在!",
onwait: "正在检测验证码,请稍候..."
});
为什么这样 action为空 如果这样传值:data: "action=7&txbCode="+function (){ return $("#txbCode").val()}, txbCode,无法获取值, 有什么好的方法能解决该问题呢?
先学学怎么插入代码吧。