jQuery 文档就绪函数

发布于 2024-12-05 10:40:37 字数 126 浏览 0 评论 0原文

以下 jQuery 文档就绪函数有什么区别(如果有):

$("document").ready(function() {});$(function() {} );

what are the differences (if any) for the following jQuery document ready functions:

$("document").ready(function() {}); and $(function() {});

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

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

发布评论

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

评论(7

请叫√我孤独 2024-12-12 10:40:37

它们是等价的,后者是第一个的简写形式。

来自 jQuery 文档

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

$(文档).ready(处理程序)
$().ready(handler) (不推荐这样做)
$(处理程序)

They are equivalent, the later is a shorthand form for the first.

From the jQuery documentation:

All three of the following syntaxes are equivalent:

$(document).ready(handler)
$().ready(handler) (this is not recommended)
$(handler)
孤独患者 2024-12-12 10:40:37

唯一的区别是简洁。 http://api.jquery.com/jQuery/#jQuery3

jQuery(回调)

此函数的行为与 $(document).ready() 类似,因为它应该用于包装其他 $()页面上的操作取决于 DOM 是否准备就绪。虽然这个函数在技术上是可链接的,但链接它实际上没有多大用处。

(强调)

The only difference is brevity. http://api.jquery.com/jQuery/#jQuery3

jQuery( callback )

This function behaves just like $(document).ready(), in that it should be used to wrap other $() operations on your page that depend on the DOM being ready. While this function is, technically, chainable, there really isn't much use for chaining against it.

(emphasis added)

尽揽少女心 2024-12-12 10:40:37

他们是一样的。查看:http://api.jquery.com/jQuery/#jQuery3

They are the same. Check out: http://api.jquery.com/jQuery/#jQuery3

萌能量女王 2024-12-12 10:40:37

他们是一样的;如前所述,后者只是前者的简写版本。

我更喜欢使用扩展版本,因为我觉得它使代码更易于阅读。

They're the same; as stated earlier, the latter is merely a shorthand version of the former.

I prefer using the expanded version, as I feel it makes code easier to read.

離殇 2024-12-12 10:40:37

是一样的。不同的名字做同样的事情

Its the same. Different names to do the same thing

看海 2024-12-12 10:40:37

$(afunc) 仅在 4 个 if 语句后调用 $(document).ready(afunc);,由于 afunc 是一个函数,因此不会输入这些语句。

$(afunc) just calls $(document).ready(afunc); after 4 if statements which don't get entered since afunc is a function.

音盲 2024-12-12 10:40:37
$(document).ready(function(){})
$().ready(function(){}) (this is not recommended)
$(function(){})
$(document).ready(function(){})
$().ready(function(){}) (this is not recommended)
$(function(){})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文