2011-08-25
XMLHttpRequest 对象用于在后台与服务器交换数据。
XMLHttpRequest 对象是开发者的梦想,因为您能够:
•在不重新加载页面的情况下更新网页 •在页面已加载后从服务器请求数据 •在页面已加载后从服务器接收数据 •在后台向服务器发送数据 所有现代的浏览器都支持 XMLHttpRequest 对象。
s.html
<html><head>
<title>XMLHttpRequest sample</title>
<script type="text/javascript" language="JavaScript">
var xmlhttp = null;
function newXMLHttpRequest() {
if (window.XMLHttpRequest) {
// Firefox, Opera 8.0+, Safari
xmlhttp = new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
// Internet Explorer
try
{
xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
//ie5 ie6
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlhttp;
}
function GetData( url) {
//'http://localhost/books.xml'
xmlhttp = newXMLHttpRequest();
if( xmlhttp) {
xmlhttp.open('GET', url, false);
xmlhttp.send(null);
document.getElementById('result').innerHTML = xmlhttp.responseText;
document.getElementById('httpcode').innerHTML = xmlhttp.status;
document.getElementById('httpstatus').innerHTML = xmlhttp.statusText;
document.getElementById('result').innerHTML = xmlhttp.responseText;
document.getElementById('xmlresult').innerHTML = xmlhttp.responseXML;
//分析responseXML,它是个DOM对象
xmlDoc = xmlhttp.responseXML;
if(xmlDoc)
{
document.write("<table border='2'>");
var x=xmlDoc.getElementsByTagName("Book");
for (i=0;i<x.length;i++)
{
document.write("<tr><td>");
document.write(x[i].getElementsByTagName("ISBN")[0].childNodes[0].nodeValue);
document.write("</td><td>");
document.write(x[i].getElementsByTagName("Title")[0].childNodes[0].nodeValue);
document.write("</td><td>");
document.write(x[i].getElementsByTagName("Author")[0].childNodes[0].nodeValue);
document.write("</td></tr>");
}
document.write("</table>");
}
}
}
</script>
</head>
<body>
<button onclick="GetData('http://localhost/books.xml')">Get a document</button>
<p>
<table border="1">
<tr><td>Document</td><td><span id="result">No Result</span></td></tr>
<tr><td>httpcode</td><td><span id="httpcode"> httpcode</span></td></tr>
<tr><td>httpstatus</td><td><span id="httpstatus"> httpstatus</span></td<>
<tr><td>xmlresult</td><td><span id="xmlresult"> xmlresult</span></td<>
</table>
</p>
</body>
</html>
books.xml
<user>
<book>
<isbn>1-59059-540-8</isbn>
<title>Foundations of Object Oriented
Programming Using .NET 2.0 Patterns</title>
<author>Christian Gross</author>
</book>
<book>
<isbn>0-55357-340-3</isbn>
<title>A Game of Thrones</title>
<author>George R.R. Martin</author>
</book>
</user>
点击get books info,会不刷新显示返回的结果。
参考: http://www.w3school.com.cn/xml/xml_http.asp
如非注明转载, 均为原创. 本站遵循知识共享CC协议,转载请注明来源
FEATURED TAGS
css
vc6
http
automake
linux
make
makefile
voip
乱码
awk
flash
vista
vi
vim
javascript
pietty
putty
ssh
posix
subversion
svn
windows
删除
编译
多线程
wxwidgets
ie
ubuntu
开源
c
python
bash
备份
性能
scp
汉字
log
ruby
中文
bug
msn
nginx
php
shell
wordpress
mqueue
android
eclipse
java
mac
ios
html5
js
mysql
protobuf
apache
hadoop
install
iocp
twisted
centos
mapreduce
hbase
thrift
tutorial
hive
erlang
lucene
hdfs
sqoop
utf8
filter
草原
yarn
ganglia
恢复
scrapy
django
fsimage
flume
tail
flume-ng
mining
scala
go
kafka
gradle
cassandra
baas
spring
postgres
maven
mybatis
mongodb
https
nodejs
镜像
心理学
机器学习
Keras
theano
anaconda
docker
spark
akka-http
json
群论
区块链
加密
抽象代数
离散对数
同余
欧拉函数
扩展欧几里德算法
ES6
node-inspect
debug
win10
vscode
挖矿