<button onclick="loadTable()">加载NTP服务器状态</button> <table id = "ntpqTable"></table> <script> function loadTable(){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function(){ if(this.readyState == 4 && this.status == 200){ var ntpqTable = document.getElementById("ntpqTable"); ntpqTable.innerHTML = this.responseText; } }; xhttp.open("GET","ntp2.php".true); xhttp.send(); } </script>
时间: 2024-02-10 16:33:48 浏览: 57
这段代码是一个前端页面的脚本部分,实现了点击按钮后通过XMLHttpRequest对象发起GET请求,请求的URL是"ntp2.php",然后将服务器返回的响应内容填充到页面上的一个表格中(表格的id为"ntpqTable")。具体实现是在xhttp.onreadystatechange函数中,通过判断xhttp对象的状态和响应码,如果均为200,则表示请求成功,将响应内容填充到表格中。
需要注意的是,请求的URL是相对路径,可能需要根据实际情况修改为绝对路径。此外,在xhttp.open方法中,第二个参数应为true,表示发起异步请求。
阅读全文