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 展开
<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 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询