gpt4 book ai didi

javascript - 使用 JavaScript 自动刷新 div

转载 作者:行者123 更新时间:2023-11-28 20:09:13 24 4
gpt4 key购买 nike

我有一个量具,每次单击按钮时都会刷新并获取随机数据。

我的问题是如何在不单击按钮的情况下执行此操作,我希望它每 5 秒自动刷新一次。

 <div id="gg1" class="gauge">
</div>
<a href="#" id="gg1_refresh" class="button grey">Random Refresh</a>
<script>
var gg1 = new JustGage({
id: "gg1",
donut: 1,
title: "BARTOW",
titleFontColor: "#000000",
value: 95.7,
min: 0,
max: 100,
labelFontColor: "#000000",
humanFriendlyDecimal: 1,
decimals: 1,
symbol: "%",
refreshAnimationType: "bounce",
gaugeWidthScale: 0.6,
customSectors: [{
color: "#ff0000",
lo: 0,
hi: 79
}, {
color: "#ffa500",
lo: 80,
hi: 89
}, {
color: "#1eae1e",
lo: 90,
hi: 100
}],
counter: true
});
$(document).ready(function () {
$('#gg1_refresh').bind('click', function () {
gg1.refresh(getRandomInt(0, 100));
return false;

});
});
</script>

最佳答案

您需要使用setInterval每 5 秒调用一个函数。

您需要创建一个包含代码的函数

gg1.refresh(getRandomInt(0, 100));

然后在点击事件处理程序中使用 setInterval 函数来调用您在上面创建的函数。

关于javascript - 使用 JavaScript 自动刷新 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20194813/

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