Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 不同形式的 $(document).ready 这些 jQuery 就绪函数有什么区别?
以下两个函数有什么区别?:
$(function() { });
和
$(document).ready(function(){});
.ready 是 DOM 准备就绪后使用的处理函数。 .ready() 方法通常与属性不兼容。我会$(function() {});正常使用。
$(function() {});
$(document).ready(function(){});通常用于匿名函数
以下所有三种语法都是等效的:
$(document).ready(handler) $().ready(handler) (this is not recommended) $(handler)
http://api.jquery.com/ready/