Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 jQuery,您可以执行类似的操作
[1,2,3].each(my_func)
在不接收参数的 my_func 中,您可以使用变量引用当前数字this。
this
现在假设我只想为一个元素再次调用 my_func 。我可以这样做:
[1].each(my_func)
有没有更好的方法只为一个元素再次调用该函数?
是的; 有一个更简单的方法:
myFunc(1);
如果你想将它作为 传递this,它仍然很容易:
myFunc.call(1);