本文介绍了如何在核心Ajax中初始化xmlhttprequest对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我是ajax的新手.

我在网上找到了许多关于如何为不同的浏览器初始化xmlhttprequest对象的方法.所以,我很困惑.

任何人都可以给我一种方法,其中包含所有浏览器的xmlhttprequest对象的初始化吗?

在此先感谢

hello all,

I am new to ajax.

I found many ways on net about how to initialize xmlhttprequest object for different browsers. So, I get confused.

Can anyone give me one method which contains initialization of xmlhttprequest object for all browsers ?

Thanks in advance

推荐答案

var xmlHttpRequest = (window.XMLHttpRequest) ? new window.XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');



这篇关于如何在核心Ajax中初始化xmlhttprequest对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 13:44