-4

I want to use 2 different open source plugins for my website, a gallery and a calendar, both uses JQuery to work.

But when i put both of their javascript together in my website, it clashes and only one will be able to appear.

Is there any ways to specific if that javascript file just works for one DIV only? Or any work around to have both in my website.

4

1 回答 1

3

是否有任何方法可以确定该 javascript 文件是否仅适用于一个 DIV?

不,给定的 HTML 文档只有一个执行环境。沙箱 JavaScript 的唯一方法是将其放入 iframe 中(即便如此,仍有 API 允许其他文档受到影响)

或者在我的网站上同时拥有两者的任何解决方法。

编辑相应脚本的源代码以更改它们影响的元素,并使它们使用相同版本的 jQuery 和它们可能依赖的任何其他库。

于 2013-07-20T16:44:22.797 回答