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.
我已经看到了以下所有三行:
$().ready(); $(document).ready(); $(document.body).ready();
它们都有效,但哪一个是真正正确(或更好)的?考虑到 ready() 事件的使用。
我使用的这些都不$(function() {})是最短且非常惯用的,因为它最少。
$(function() {})