摘要: function btnClick() { var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); if (!xmlhttp) { alert("创建xmlhttp对角异常"); } xmlhttp.open("POST", "GateDate.ashx", false); xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4) { if (xmlhttp.status == 200) { document.getElementById("Text1").v 阅读全文