javascript中是否有方法加载页面而不实际显示该页面?
我想加载一个处理数据库插入任务的php页面。
答案 0 :(得分:2)
答案 1 :(得分:1)
是的,您可以使用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
的一些文档