function createXMLHttpRequest() {
if (window.ActiveXObject)
xmlHttp = new ActiveXObject("Mincrosoft,XMLHttp");
else if (window.XMLHttpRequest)
xmlHttp = new XMLHttpRequest();
}
当用户单击按钮时发生异步请求,并获取responseXML对象,代码如下
复制代码 代码如下: