获取Ajax通信对象方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取Ajax通信对象方法相关的知识,希望对你有一定的参考价值。
function getXHR() { // 该方法用于获取Ajax通信对象 var xhr = null; if (window.XMLHttpRequest != null && window.XMLHttpRequest != undefined) { xhr = new XMLHttpRequest(); } else { / 兼容早期的IE浏览器 xhr = new ActiveXObject("Microsoft.XMLHTTP"); } return xhr; }
以上是关于获取Ajax通信对象方法的主要内容,如果未能解决你的问题,请参考以下文章