gpt4 book ai didi

javascript - 如何让函数在 html 页面中自动运行?

转载 作者:行者123 更新时间:2023-11-30 16:21:03 25 4
gpt4 key购买 nike

我正在使用 JavaScript 处理一个动态 html 页面,我想在不使用 onclick 的情况下自动运行一个函数,并且我想延迟执行它。

我尝试了 setTimeout() 但它没有按预期工作。

如何将下面的代码转换为在没有按钮的情况下延迟自动运行 function updateSliderValue()

<!--creating a container for the input box--> 
<div><button onclick="updateSliderValue();">Set value</button></div>

代码是:

    }
function updateSliderValue() {
slider = widget.getByName("Slider1");
slider.setValue();
}

</script>
</head>
<body>
<div style="clear: both; margin-top: 40px;"></div>
<div class="cell">
<div class="container" style="height: 100px;">
<div class="widget" style="height: 100%;" id="root">
</div>
</div>
</div>
<!--creating a container for the input box-->
<div><button onclick="updateSliderValue();">Set value</button></div>


</body>
</html>

非常感谢你付出的努力和时间,但我不知道你给我的代码放在哪里。

最佳答案

function updateSliderValue() {
//work
}

(function() {
setTimeout(updateSliderValue,1000);
})();

当必须加载页面时,然后在下方

$(function() {
setTimeout(updateSliderValue,1000);
});

关于javascript - 如何让函数在 html 页面中自动运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34740010/

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