SimpleModal 插件导致 jQuery 与 Spring DWR 冲突
我正在使用 SimpleModal 插件 (http://www.ericmmartin.com/projects/simplemodal/) 用于生成一个简单的模式对话框。现在,我使用它的应用程序有一些使用 Spring MVC - DWR Ajax 框架的先前代码。我相信它内部使用了 jQuery。
现在,当我在该项目中包含 jQuery 文件并使用该插件时,该插件工作正常,但它破坏了项目中现有的 AJAX 实现(我认为这是因为我再次包含了 jQuery 文件。)我该如何解决这个冲突?
I'm using SimpleModal plugin (http://www.ericmmartin.com/projects/simplemodal/) for generating a simple modal dialog. Now the application I'm using this in had some previous code that uses Spring MVC - DWR Ajax framework. I believe it uses jQuery internally.
Now when I include the jQuery file in this project and use the plugin, the plugin works fine but it is breaking the existing AJAX implementations in the project (which I assume is because I'm including the jQuery file again.) How do I resolve this conflict?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有更多详细信息,我无法确定问题是什么。一个好的起点是确保“$”快捷方式不会引起任何冲突。您可以尝试使用 JQuery.noConflict();如 JQuery 文档 中所述。
Without more details I can't be sure what the problem is. A good place to start would be to make sure the '$' shortcut is not causing any conflicts. You can try using JQuery.noConflict(); as described on the JQuery documentation.