xmlHttp ie6 xmlHttp ie6下不跨域还提示没有权限,ie8下不会有这错误
人气:0想了解xmlHttp ie6下不跨域还提示没有权限,ie8下不会有这错误的相关内容吗,在本文为您仔细讲解xmlHttp ie6的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:xmlHttp,ie6,不跨域,没有权限,下面大家一起来学习吧。
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
加载全部内容