2 回答
TA贡献1805条经验 获得超10个赞
这是一个不需要jquery的版本:
function insertPage() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
var element = document.createElement("div");
element.innerHTML = this.responseText;
document.body.appendChild(element);
};
xhttp.open("GET", "https://www.shizyab.ir/rand.php", true);
xhttp.send();
}
并运行此代码:insertPage();
TA贡献1784条经验 获得超7个赞
您可以通过在 window.onload 上的脚本中使用带有 jquery 的 ajax 调用来实现此目的: 假设你的 php 脚本返回一个 json 对象。
function getData(username, callback) {
var url = 'shizyab.ir/rand.php';
$.ajax({
url:(url),
type: 'GET',
dataType: 'json',
success: (data) => {
callback(data);
}
});
}
然后在callback函数中处理数据显示。
- 2 回答
- 0 关注
- 139 浏览
添加回答
举报