Why are we using ({ })?
Is it delegate?
What does it mean to use this syntax?
What are we wrapping with it?
For example:
$.ajaxSetup ({ // <-- THIS
error: fError,
compelete: fComp,
success: fSucc
}); // <-- AND THIS
|
Why are we using Is it delegate? What does it mean to use this syntax? What are we wrapping with it? For example:
|
||||
|
In this case you're passing an object containing your settings to the plugin. The plugin can deal with this as a object, whatever it's referenced as, for example:
Of course it has a lot more uses, but this is the most common example in jQuery. The same is true for the As requested, some other examples:
This would set the focus event of that input to have an alert. Another is extending an object, adding properties to it, like this:
Now Why are we using it? Well...that's how JavaScript works, and in the jQuery spirit: it's an extremely terse and flexible way to pass information. |
|||||||||||||||||
|
No. That's JavaScript object notation (JSON). In your example you're invoking the function
For instance, to create an "user" object you could write:
And then use one of its attributes:
Shows: Oscar What you see there (in your code) is the creation of an object and passing it as an argument. It would be equivalent to:
|
|||||||||||
|
|
The question was about the notation "({ })". In this context, the parentheses "(...)" following an expression, such as $.ajaxSetup, causes the function specified by the expression to be called. The expression inside the parentheses (which could be a comma separated list of expressions) results in a value (or a list of values) that is the argument(s) passed to the function. Finally, when "{...}" is used in an expression context, it constructs an object with the name-value properties specified. This is like JSON but it is, more generally, any legal JS object literal. |
||||
|
|
|
It is either a JavaScript object literal or more specifically JSON when it comes to sending parameters over Ajax. JSON is subset of JavaScript object literals. For example:
Please read more about it here: |
|||||||||||||
|
|
If you mean in this context:
Then the |
|||||||
|
thisif you aren't actually referring tothis. it hurts my head. – David Murdoch Apr 23 '10 at 13:21