function getResult() {
if (http_request.readyState == 4) { // 判断请求状态
if (http_request.status == 200) { // 请求成功,开始处理返回结果
var h=http_request.responseText;
h=h.replace(/\s/g,""); //除去字符串中的Unicode空白
alert(h);
if(h=="登录成功!")
alert("登录成功!");
else
{
alert("登录失败!");
form.account.value="";
form.password.value="";
form.account.focus();
}
} else { // 请求页面有错误
alert("您所请求的页面有错误!");
}
}
}
。。。。。。。。。。。
alert(h);这个警告框乱码,使得登录都是失败