标题:把这个代码用微软的ajax怎么实现??实现同样功能
取消只看楼主
mextb1860
Rank: 1
等 级:新手上路
帖 子:179
专家分:0
注 册:2005-7-10
 问题点数:0 回复次数:0 
把这个代码用微软的ajax怎么实现??实现同样功能

<script type="text/javascript">


var http_request = false;

function send_request(url) {//初始化、指定处理函数、发送请求的函数

http_request = false;
//开始初始化XMLHttpRequest对象
if(window.XMLHttpRequest) { //Mozilla 浏览器
http_request = new XMLHttpRequest();
if (http_request.overrideMimeType) {//设置MiME类别
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) { // 异常,创建对象实例失败
window.alert("不能创建XMLHttpRequest对象实例.");
return false;
}
//http_request.onreadystatechange = processRequest;
// 确定发送请求的方式和URL以及是否同步执行下段代码
http_request.open("GET", url, true);
http_request.send(null);
var divv2= document.getElementById("divv2").innerHTML;
divv2.innerHTML = http_request.responseText;
}


</script>

搜索更多相关主题的帖子: 微软 ajax 代码 
2006-12-15 14:43



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-109708-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.545211 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved