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; }