使用Ajax没有返回的参数,为什么不能得到值
发布网友
发布时间:2022-03-25 20:17
我来回答
共2个回答
热心网友
时间:2022-03-25 21:46
$(document).ready(function(){
$("#mail").blur(function() { //输入框的值
var val = $(this).val();
$.ajax({
type: "POST",
url: "AJax/Ajax_CheckRegUser.aspx", //传过去的页面
data: { type: "checkUsers", name: val }, //传过去的值type 可以不要
success: function(msg) {
if (msg == "False") {
alert("用户名已存在,请重新输入!");
}
else{
alert("可以使用!");
}
}
});
} });AJax/Ajax_CheckRegUser.aspx页面代码如下:if(request["name"].tostring()=="aa"){response.write("false");response.end();}else{response.write("true");response.end();} 删除了部分,不知道括号有没有错,可以试下这个!
热心网友
时间:2022-03-25 23:04
你的alert()写错了。。。。