本文主要是介绍xmlhttprequest同步获取后台数据(一),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.前台代码:
<%@ Page Title="主页" Language="C#" AutoEventWireup="true"
CodeBehind="Default.aspx.cs" Inherits="ajax测试1._Default" %>
<html>
<head>
<script type="text/javascript">
function getXmlHttpObject() {
var httpobj = null;
try{
httpobj = new ActiveXObject("Microsoft.XMLHTTP");//支持IE
}
catch(e) {
try {
httpobj = new XMLHttpRequest();//非IE内核的都支持,高版本的IE其实也支持这个了,测试IE8支持
}
catch (e) {
httpobj = new ActiveXObject("Msxml2.XMLHTTP");//支持IE
}
}
return httpobj;
}
function cs() {
var obj = doc
这篇关于xmlhttprequest同步获取后台数据(一)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!