ajax XMLHttpRequest 问题 急!!!

<html><head><title>test_url</title><scriptlanguage="javascript">varxmlhttp;functionlo... <html>
<head>
<title>test_url</title>

<script language="javascript">
var xmlhttp;
function loadXMLDoc(url)
{
xmlhttp=null;
if (url !=""){
if (window.ActiveXObject)
{// code for IE5 and IE6
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
alert("ie6");
}
else if (window.XMLHttpRequest)
{// code for all new browsers
xmlhttp=new XMLHttpRequest();
alert("firefox&&ie7"+xmlhttp);
if (xmlhttp.overrideMimeType) {//设置MiME类别
//有些版本的浏览器在处理服务器返回的未包含XML mime-type头部信息的内容时会报错,因此,要确保返回的内容包含text/xml信息。
xmlhttp.overrideMimeType("text/xml");
}
}

if (xmlhttp!=null)
{
alert("xmlhttp is not none"+xmlhttp);
xmlhttp.onreadystatechange=state_Change;
xmlhttp.open("GET",url,true);
//alert("11111");
xmlhttp.send(null);
// alert(xmlhttp.status);
}
else
{
alert("Your browser does not support XMLHTTP.");
}
}
else{
alert("参数不能为空!");}
}

function state_Change()
{
if (xmlhttp.readyState==4)
{// 4 = "loaded"
if (xmlhttp.status==200)
{// 200 = OK
// ...our code here...
alert("url能够访问!");
}
else
{
alert("url不能访问!"+xmlhttp.status);
}
}
}
</script>
</head>
<body>
<div align="center">
<input type="text" name="url" id="url"> <input type="button" value="Test The Url" onclick="loadXMLDoc(url.value);">
</div>
</body>
</html>

firefox不能访问 但是ie可以
好想是open()那边的问题 谢谢各位!!!!!
控制台信息
错误: uncaught exception: [Exception... "Access to restricted URI denied" code: "1012" nsresult: "0x805303f4
展开
 我来答
百度网友22d4d57
2008-09-28 · TA获得超过403个赞
知道小有建树答主
回答量:776
采纳率:0%
帮助的人:532万
展开全部
<input type="text" name="url" id="url" value="">
不是每个URL都有权限访问的 ,
你的URL的 内容是什么不清楚!?
百度网友26da01a
2008-09-25 · TA获得超过476个赞
知道小有建树答主
回答量:91
采纳率:0%
帮助的人:0
展开全部
Access to restricted URI denied:对url的访问被拒绝。权限的问题。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式