gpt4 book ai didi

jquery回调

转载 作者:行者123 更新时间:2023-12-01 03:54:50 25 4
gpt4 key购买 nike

我需要能够在准备好后执行函数时进行回调

jQuery(document).ready(function() {    
execute function 1, only when finish
do function 2
});

有什么好的方法可以做到这一点?

最佳答案

加载文档后执行以下操作:

$(function(){
DoSomething();
});

function DoSomething()
{
SomethingElse(); // depends what you're doing in DoSomething()
}

function SomethingElse()
{
}

关于jquery回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3813191/

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