ajax驱动代码,兼容Firefox和Opera

function ajax_driv() {
    var xmlhttp;
    if (window.ActiveXObject) {
        /* 不要删除以下注释,这部分不是注释 */
        /*@cc_on @*/
        /*@if (@_jscript_version >= 5)
  try {
    xmlhttp = new ActiveXObject("Msxml2.xmlhttp");
  } catch (e) {
    try {
   xmlhttp = new ActiveXObject("Microsoft.xmlhttp");
    } catch (e) {
   xmlhttp = false;
    }
  }
  @end @*/
    } else {
        xmlhttp = new XMLHttpRequest();
    }

    if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
        xmlhttp = new XMLHttpRequest();
    }
    return xmlhttp;
}

转自Sin.CS 的 部落格

留下评论

鄂ICP备13000209号-1

鄂公网安备 42050602000277号