六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 28|回复: 0

ajax-engine

[复制链接]

升级  59.33%

35

主题

35

主题

35

主题

秀才

Rank: 2

积分
139
 楼主| 发表于 2013-1-23 02:52:29 | 显示全部楼层 |阅读模式
 
function getHttpRequest() {var http_request;if (window.XMLHttpRequest) // Mozilla, Safari, ...{http_request = new XMLHttpRequest();// //如果浏览器直接支持window.XMLHttpRequest对象} else if (window.ActiveXObject) // IE,//如果浏览器支持window.ActiveXObject对象{try {http_request = new ActiveXObject("Msxml2.XMLHTTP");} catch (e) {try {http_request = new ActiveXObject("Microsoft.XMLHTTP");} catch (e) {}}} else {alert('浏览器啥都不支持,我也只有啥都不干了!');return; // 浏览器啥都不支持,我也只有啥都不干了}return http_request;}function getHttpRequest2(){if(window.XMLHttpRequest){return new XMLHttpRequest();}else if(window.ActiveXObject){try{return new ActiveXObject("Msxml2.XMLHTTP");}catch(e){return new ActiveXObject("Microsoft.XMLHTTP");}}else{alert('请使用IE或者Firefox浏览器!');return;}} 
调用方法比较简单

var http_request = getHttpRequest();if (!http_request) {alert('建议使用IE或Firefox浏览器!');} else {var linkurl = '/AjaxTest/ajax.jsp' + "?RecruitePerID=" + RecruitePerID+ "&TestPaperID=" + TestPaperID+ "&QuestionID=" + QuestionID+ "&QuestionAnswer=" + QuestionAnswer+ "&submitButtonFlag=" + submitButtonFlaghttp_request.open("GET", linkurl, false);http_request.send(null);var returntxt = unescape(http_request.responseText);} 
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表