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.
不知道如何措辞,但是,不考虑人们喜欢的构建有多复杂,它是否重要以及使用的优点和缺点是什么:
$(ele).plugin("method", options);
与
$(ele).plugin.method(options);
谢谢
我认为第二种方式可能性能不佳,因为它与 JavaScript 的对象显着版本有关。因此,它可能在访问时引用 null 成员或类型。
第一种方法更简单,因为它只使用方法中的参数。