2
在Mootools的,在函數內這個變量的值可以控制:設定值
function foo() { // do something with the this variable } var bar = foo.bind(some_object); // Now bar does the same thing as foo, except // the this variable is a reference to some_object
可這jQuery中做什麼?