xmlHttp ie6下不跨域还提示没有权限,ie8下不会有这错误
xmlHttp ie6下不跨域还提示没有权限,ie8下不会有这错误
发布时间:2016-12-29 来源:查字典编辑
摘要:url太长就会提示没有权限,ie8不会,这应该跟浏览器有关的其实有个问题你注意一下就是,改成POST方式传就解决了this.xmlHttp....

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

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新相关技巧学习
热门相关技巧学习
编程开发子分类