在javascript中加载页面

时间:2013-07-24 17:54:44

标签: javascript load

javascript中是否有方法加载页面而不实际显示该页面?

我想加载一个处理数据库插入任务的php页面。

2 个答案:

答案 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

以下是MDN XMLHttpRequest

的一些文档