-1

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

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

4

2 回答 2

2

使用 AJAX 获取/发送数据到服务器端?

于 2013-07-24T17:58:42.000 回答
0

是的,你可以使用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的一些文档

于 2013-07-24T18:03:41.253 回答