The following jQuery works with or without a semicolon after the function. Why?
jQuery(document).ready(function(){
jQuery("#red").treeview({
animated: "fast",
collapsed: true,
control: "#treecontrol",
persist: "cookie"
})
});
It works on all browsers. Wouldn't this cause an error?
The following jQuery works with or without a semicolon after the function. Why?
jQuery(document).ready(function(){
jQuery("#red").treeview({
animated: "fast",
collapsed: true,
control: "#treecontrol",
persist: "cookie"
})
});
It works on all browsers. Wouldn't this cause an error?
Share Improve this question edited Jul 11, 2012 at 12:30 Undefined 11.4k5 gold badges39 silver badges62 bronze badges asked May 15, 2012 at 15:26 AlxVallejoAlxVallejo 3,2386 gold badges53 silver badges82 bronze badges 1- Why should it? Semicolons are optional (at least at this position). – Felix Kling Commented May 15, 2012 at 15:27
1 Answer
Reset to default 13JavaScript doesn't actually require semicolons. That's just convention.
http://inimino/~inimino/blog/javascript_semicolons
I remend using semicolons, just like I'd remend indenting your code.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743627368a4480763.html
评论列表(0条)