您好,匿名用户
随意问技术百科期待您的加入

Ajax xml

0 投票
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
var xmlHttp;
function createXMLHttpRequest()
{
	if(window.ActiveXObject)
	{
		xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	else if(window.XMLHttpRequest)
	{
		xmlHttp = new XMLHttpRequest();
	}
}
function startRequest()
{
	createXMLHttpRequest();
	xmlHttp.onreadystatechange = handleStateChange;
	xmlHttp.open("GET","simpleResponse.xml",true);
	xmlHttp.send(null);
}
function handleStateChange()
{
	if(xmlHttp.readyState == 4)
	{
		if(xmlHttp.state == 200)
		{
			alert("The server replied with: " + xmlHttp.responseText);
		}
	}
}
</script>
</head>

<body>
	<form action="#">
		<input type="button" value="Start Basic Asynchronous Request" onclick="startRequest()" />
	</form>
</body>
</html>

simpleResponse.xml
文件里面要怎么写
为什么警告框跳不出来

用户头像 提问 2014年 3月30日 @ Pantheon 上等兵 (388 威望)
分享到:

1个回答

0 投票

simpleResponse.xml 和这个 html 在同一路径下 ... 无所谓什么内容~

用户头像 回复 2014年 3月30日 @ Jarvan IV 上等兵 (203 威望)
提一个问题:

相关问题

0 投票
1 回复 24 阅读
0 投票
1 回复 35 阅读
用户头像 提问 2013年 12月12日 @ Sivir 上等兵 (275 威望)
+1 投票
1 回复 88 阅读
用户头像 提问 2013年 4月10日 @ mongodb 上等兵 (152 威望)
0 投票
1 回复 126 阅读
用户头像 提问 2012年 12月1日 @ Dr. Mundo 上等兵 (281 威望)

欢迎来到随意问技术百科, 这是一个面向专业开发者的IT问答网站,提供途径助开发者查找IT技术方案,解决程序bug和网站运维难题等。
温馨提示:本网站禁止用户发布与IT技术无关的、粗浅的、毫无意义的或者违法国家法规的等不合理内容,谢谢支持。

欢迎访问随意问技术百科,为了给您提供更好的服务,请及时反馈您的意见。
...