jQuery 中不同语法有什么区别?
有什么区别?
$(function() {
//.....
});
:和
$(document).ready(function() {
//......
});
在 jQuery 编码中
what is the difference between:
$(function() {
//.....
});
and
$(document).ready(function() {
//......
});
in jQuery coding?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有什么。它实际上完全相同,只是一个快捷方式,因此您只需编写更少的代码。
Nothing. It does actually exactly the same, it's just a shortcut so you have to write less code.