欢迎来到福编程网,本站提供各种互联网专业知识!

xmlHttp ie6下不跨域还提示没有权限,ie8下不会有这错误

发布时间:2009-04-27 作者: 来源:转载
昨天晚上叫我好弄啊,最后发现原因是我url太长了,最后发现URL在2070B左右就不行了
url太长就会提示没有权限,ie8不会,这应该跟浏览器有关的
其实有个问题你注意一下就是,改成POST 方式传就解决了
this.xmlHttp.open("POST", this.url, true);
//alert('end');

this.xmlHttp.setrequestheader("content-length",this._data.length);
this.xmlHttp.setrequestheader("content-type","application/x-www-form-urlencoded");
this.xmlHttp.onreadystatechange = Page;
this.xmlHttp.send(this._data);

by webxeyes 转载注明出处 http://blog.csdn.net/webxeyes

相关推荐