gpt4 book ai didi

javascript - 用户ajax在javaScript中获取没有 "onClick function"的数据

转载 作者:行者123 更新时间:2023-11-30 07:33:21 26 4
gpt4 key购买 nike

我一直在寻找通过使用不带 onclick 函数的 ajax 获取数据的示例,但我发现的大部分示例都在 onclick 函数中。
这是我使用Onclick函数成功获取数据的html

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>New document</title>

<script type = 'text/javascript' src='js/jquery-2.2.0.js'></script>

<script type ='text/javascript' src='js/testScript.js'></script>

<?php
include_once("database_conn_getOffers.php");
?>
</head>
<body>
content goes here
<aside id="offer" onclick ="loadDoc('getData.php',myFunction)">
&nbsp; click here
</aside>
</body>

这是脚本

function loadDoc(url, cFunction) {
var xhttp;
xhttp=new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
cFunction(this);
}
};
xhttp.open("GET", url, true);
xhttp.send();
}
function myFunction(xhttp) {
document.getElementById("offer").innerHTML =
xhttp.responseText;
}

现在,我想在没有 onclick 函数的情况下获取数据。
我希望在打开 html 后显示数据。
有人可以给我一些链接或给我一个例子吗??

最佳答案

不需要加载正文。可以直接在JS中使用window onload函数

JS

window.onload = function() {
loadDoc('getData.php',myFunction)
};

关于javascript - 用户ajax在javaScript中获取没有 "onClick function"的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43271183/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com