哪个 JQuery document.ready 更好?
你知道哪一个更好吗?为什么?
第一个;
$(document).ready(function() {
// your code
});
第二个:
$(function() {
// your code
});
Possible Duplicate:
jQuery $( function() {} ) and $(document).ready the same?
Do you know which one is better and why?
The first one;
$(document).ready(function() {
// your code
});
The second One :
$(function() {
// your code
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
没关系。我更喜欢第二种情况,因为它更容易打字。
这就是该函数内部所做的事情。
It doesn't matter. I'm more of a fan of the 2nd case because its easier to type.
This is what the function does internally.
它们是等价的。这取决于您想要的详细程度或简洁程度。
They are equivalent. It depends on how verbose or concise you want to be.
以下所有三种语法
是等价的:
http://api.jquery.com/ready/
All three of the following syntaxes
are equivalent:
http://api.jquery.com/ready/
两者都是一样的
参考:http://api.jquery.com/ready/
Both are the same
reference : http://api.jquery.com/ready/