日期:2014-05-17 浏览次数:20463 次
if(XMLHttp.readyState==4&&XMLHttp.status==200) { var a=XMLHttp.responseText; a=a.replace(/\r\n/g,""); var b="success"; if(a!=b) { document.getElementById("status").innerHTML=a; } else eval("alert('添加成功');window.location='test2.php';"); }
var a = "\\r\\nsuccess"; var b = "success";
------解决方案--------------------
或者你可以用正则匹配来判断:
var b=/success/g;
if(!b.test(a))
{
document.getElementById("status").innerHTML=a;
}
else
eval("alert('添加成功');window.location='test2.php';");
------解决方案--------------------
var a=XMLHttp.responseText;
alert('[' + a + ']');
说说都看到了什么
只有弄清楚了返回的是什么,才能判断是什么问题
瞎猜是没有意义的