ajax 不错的应用
<script type="text/javascript" language="javascript">
var http_request = false;
function makeRequest(url) {
http_request = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,...
http_request = new XMLHttpRequest();
if (http_request.overrideMimeType) {
http_request.overrideMimeType('text/xml');
}
} else if (window.ActiveXObject) { // IE
try {
http_request = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
http_request = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!http_request) {
alert('Giving up :( Cannot create an XMLHTTP instance');
return false;
}
http_request.onreadystatechange = alertContents;
http_request.open('GET', url, true);
http_request.send(null);
}
function alertContents() {
if (http_request.readyState == 4) {
if (http_request.status == 200) {
alert(http_request.responseText);
} else {
alert('There was a problem with the request.');
}
}
}
</script>
<span
style="cursor: pointer; text-decoration: underline"
onclick="makeRequest('test.html')">
Make a request
</span>
[Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]
相关文章
Ajax 给 XMLHttpReq.onreadystatechange传递参数
这篇文章主要介绍了Ajax如何给XMLHttpReq.onreadystatechange =函数传递参数,需要的朋友可以参考下2014-05-05
django中使用jquery ajax post数据出现403错误的解决办法(两种方法)
在django中,使用jquery ajax post数据,会出现403的错误,大家知道该如何解决吗?下面由脚本之家小编给大家分享两种解决办法,需要的朋友可以参考下2015-09-09
jQuery通过Ajax向PHP服务端发送请求并返回JSON数据
这篇文章主要介绍了jQuery通过Ajax向PHP服务端发送请求并返回JSON数据,设计到的知识点有jquery、ajax、php、json,感兴趣的朋友一起学习下jquery ajax 返回json2015-10-10


最新评论