javascript - Semicolon on jQuery - Stack Overflow

admin2025-04-03  0

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
Add a ment  | 

1 Answer 1

Reset to default 13

JavaScript 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.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743627370a213813.html

最新回复(0)