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 noconflict 模式:
http://api.jquery.com/jQuery.noConflict/
我相信这是由于 o3d 代码我有window.onload = init()我的 o3d 代码的设置功能。
window.onload = init()
注释掉该行并添加:
jQuery(function() { init(); }
最后解决了问题。