gpt4 book ai didi

javascript - $.Document.Ready 在同一个页面执行两次,哪个先执行?

转载 作者:行者123 更新时间:2023-11-29 18:22:06 25 4
gpt4 key购买 nike

伙计,我对下面的代码有点困惑,在下面的代码中有两个函数然后将首先执行 Function1() 或 Function2 ()?

$(document).ready(function() {
// some code here for function1()
});
$(document).ready(function() {
// other code here for function2()
});

最佳答案

函数 1 将首先执行。 jQuery 将始终按照它们绑定(bind)的顺序执行事件处理程序(请记住,委托(delegate)处理程序将在直接处理程序之后执行,因为它们仅在事件通过 DOM 冒泡时发生 - 但这不适用于此处)。

这记录在 on method docs 的括号中:

(Event handlers bound to an element are called in the same order that they were bound.)

关于javascript - $.Document.Ready 在同一个页面执行两次,哪个先执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17487825/

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