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.
嗨,我是 jQuery 新手,我想知道两者之间的区别:
$(function() { });
和
$(document).ready(function() { });
谢谢!!
第一个符号:
$(function(){ ... });
是 second-choice 的简写:
$(document).ready(function(){ ... });
他们都会做完全相同的事情,但是第一个只需要稍微少一点的代码。
没有区别 - 只是不同的符号