What's the .apply jQuery function?

前端 未结 2 2000
不思量自难忘°
不思量自难忘° 2020-12-07 14:01

I see that in different plugins and codes, but I don\'t understand what does that function... In the jQuery api isn\'t referenced!

2条回答
  •  时光取名叫无心
    2020-12-07 14:54

    apply calls a function with a set of arguments. It's not part of jQuery, it's part of core Javascript. However, there is mention of it in the jQuery docs:

    http://docs.jquery.com/Types#Context.2C_Call_and_Apply

    Syntax:

    somefunction.apply(thisObj, [argsArray])
    

    The above calls the function somefunction, setting this to thisObj within the function's scope, and passing in the arguments from argsArray as the arguments to the function.

提交回复
热议问题