日期:2014-05-16 浏览次数:20804 次
txtUserEmail: {
required: true,
remote: {
type: "post",
url: "/AJAX/CheckUserEmail.ashx?fresh=" + Math.random(),
data: {
UserEmail: function () {
return $("#txtUserEmail").val();
}
},
dataType: "html",
dataFilter: function (data, type) {
$("#divhahaha").html(data);
if (data == "true") { return false; }
else { return true; }
}
}
}