2

I noticed that a certain script I use relies on prototype. (Lightbox 2) Will it work together on the same page as jQuery? Is there way to make sure that they don;t conflict?

4

3 回答 3

9

可以,但如果您使用特殊功能,则需要采取特殊步骤。$()基本上它归结为您调用库和/或调用jQuery.noConflict().

于 2010-01-04T03:42:31.250 回答
3

使用jQuery.noConflict以便您需要显式使用 jQuery 对象进行调用(即jQuery('#selector'),而不是$别名。

于 2010-01-04T03:42:45.180 回答
2

大量的灯箱克隆,为什么不选择一个 jQuery 呢?不管避免库之间的冲突,在一个页面上有两个 JS 库需要下载很多

于 2010-01-04T03:48:55.653 回答