javascript中是否有一种方法可以加载页面而不实际显示该页面?
我想加载一个处理数据库插入任务的 php 页面。
是的,你可以使用XMLHttpRequest
这个。
这是一个例子
function done() {
console.log(this.responseText); // The response from the server
};
var XHR = new XMLHttpRequest();
XHR.onload = done; // Set the onload function
XHR.open("get", "something.php", true); // Type & File
XHR.send(); // Send the request