XMLHttpRequest.open方法获取远程地址数据,代码哪里出问题了吗
<html><head><metahttp-equiv="Content-Type"content="text/html;charset=gb2312"><script>...
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script>
function getXmlHttp() //获取XMLHttpRequest对象
{
if(window.XMLHttpRequest)
{
return new XMLHttpRequest();
}
else
{
return new ActiveXObject("Microsoft.XMLHTTP"); //针对IE浏览器
}
}
function getInfo(type,startDate,endDate,pagingIndex) //根据给进的参数请求服务数据
{
var url="http://www.baidu.com"; //拼接地址
xmlHttp=getXmlHttp(); //得到XMLHttpRequest对象
xmlHttp.open("GET", url, true); //打开连接
xmlHttp.onreadystatechange=function () //定义当信息反馈回来时的处理函数 状态信息发生变化时执行的函数
{
if(xmlHttp.readyState==4)
{
alert(xmlHttp.responseText); //将得到的信息弹出来
}
};
xmlHttp.send(); //发送请求
}
</script>
</head>
<body>
<h1>request</h1>
<input type="button" onclick="getInfo()" value="确定">
</body>
</html> 展开
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script>
function getXmlHttp() //获取XMLHttpRequest对象
{
if(window.XMLHttpRequest)
{
return new XMLHttpRequest();
}
else
{
return new ActiveXObject("Microsoft.XMLHTTP"); //针对IE浏览器
}
}
function getInfo(type,startDate,endDate,pagingIndex) //根据给进的参数请求服务数据
{
var url="http://www.baidu.com"; //拼接地址
xmlHttp=getXmlHttp(); //得到XMLHttpRequest对象
xmlHttp.open("GET", url, true); //打开连接
xmlHttp.onreadystatechange=function () //定义当信息反馈回来时的处理函数 状态信息发生变化时执行的函数
{
if(xmlHttp.readyState==4)
{
alert(xmlHttp.responseText); //将得到的信息弹出来
}
};
xmlHttp.send(); //发送请求
}
</script>
</head>
<body>
<h1>request</h1>
<input type="button" onclick="getInfo()" value="确定">
</body>
</html> 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询