哪个 JQuery document.ready 更好?

发布于 2024-11-15 02:53:22 字数 405 浏览 2 评论 0原文

可能的重复:
jQuery $( function() {} ) 和 $(document).ready 相同?

你知道哪一个更好吗?为什么?

第一个;

$(document).ready(function() {
  // your code
});

第二个:

$(function() {
  // your code
});

Possible Duplicate:
jQuery $( function() {} ) and $(document).ready the same?

Do you know which one is better and why?

The first one;

$(document).ready(function() {
  // your code
});

The second One :

$(function() {
  // your code
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

走走停停 2024-11-22 02:53:22

没关系。我更喜欢第二种情况,因为它更容易打字。

这就是该函数内部所做的事情。

// HANDLE: $(function)
// Shortcut for document ready
} else if ( jQuery.isFunction( selector ) ) {
   return rootjQuery.ready( selector );
}

It doesn't matter. I'm more of a fan of the 2nd case because its easier to type.

This is what the function does internally.

// HANDLE: $(function)
// Shortcut for document ready
} else if ( jQuery.isFunction( selector ) ) {
   return rootjQuery.ready( selector );
}
情绪 2024-11-22 02:53:22

它们是等价的。这取决于您想要的详细程度或简洁程度。

They are equivalent. It depends on how verbose or concise you want to be.

俏︾媚 2024-11-22 02:53:22

以下所有三种语法
是等价的:

 $(document).ready(handler)
 $().ready(handler) // (this is not recommended)
 $(handler)

http://api.jquery.com/ready/

All three of the following syntaxes
are equivalent:

 $(document).ready(handler)
 $().ready(handler) // (this is not recommended)
 $(handler)

http://api.jquery.com/ready/

对风讲故事 2024-11-22 02:53:22

两者都是一样的
参考:http://api.jquery.com/ready/

Both are the same
reference : http://api.jquery.com/ready/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文