以下 jQuery 在函数后有或没有分号都可以使用。为什么?
jQuery(document).ready(function(){
jQuery("#red").treeview({
animated: "fast",
collapsed: true,
control: "#treecontrol",
persist: "cookie"
})
});
它适用于所有浏览器。这不会导致错误吗?
以下 jQuery 在函数后有或没有分号都可以使用。为什么?
jQuery(document).ready(function(){
jQuery("#red").treeview({
animated: "fast",
collapsed: true,
control: "#treecontrol",
persist: "cookie"
})
});
它适用于所有浏览器。这不会导致错误吗?
JavaScript 实际上不需要分号。那只是惯例。
http://inimino.org/~inimino/blog/javascript_semicolons
我推荐使用分号,就像我推荐你的代码缩进一样。