jquery – $() ready()和$(document).ready()之间有区别

前端之家收集整理的这篇文章主要介绍了jquery – $() ready()和$(document).ready()之间有区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我看过一些代码,他们只是这样做:
$().ready(function()
{
    ...
});

这比做一个文档选择器短,但是是一回事吗?

解决方法

轻微更改:
$(document).ready(function() {});

等于:

$(function() {});

从jQuery 1.4:$()。ready(function(){});在所有情况下不再正确工作。从发行说明:

As of jQuery 1.4,if you pass no arguments in to the jQuery() method,an empty jQuery set will be returned. In prevIoUs versions of jQuery,a set containing the document node would be returned.

原文链接:https://www.f2er.com/jquery/183969.html

猜你在找的jQuery相关文章