gpt4 book ai didi

javascript - 在窗口加载时调用 documentReady 函数?

转载 作者:行者123 更新时间:2023-12-02 20:11:26 24 4
gpt4 key购买 nike

快速一点...

如何在文档就绪中定义的窗口加载时运行函数?

$(document).ready(function() {
//How do I run this, down from Load??
function thisFunction() {
alert("This function");
}
});

$(window).load(function() {
thisFunction();
});

最佳答案

$(document).ready(function() {
//How do I run this, down from Load??
function thisFunction() {
alert("This function");
}
$(window).load(thisFunction);
});

关于javascript - 在窗口加载时调用 documentReady 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6915552/

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