js-ajax实现获取xmlHttp对象
Posted DREAM
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js-ajax实现获取xmlHttp对象相关的知识,希望对你有一定的参考价值。
//获取xmlHttp对象 function createXMLHttp() { var xmlHttp; //对于大多数浏览器适用 if (window.XMLHttpRequest()) { xmlHttp = new XMLHttpRequest(); } //考虑浏览器的兼容性 if (window.ActiveXObject) { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); if (!xmlHttp) { xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); } } return xmlHttp; }
以上是关于js-ajax实现获取xmlHttp对象的主要内容,如果未能解决你的问题,请参考以下文章
VB6.0:如何通过xmlhttp对象,获取多个URL的HTML代码?
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段