google o3d 和 jQuery 可以在同一个页面中使用吗?
我想在同一页面上使用这两个库,但它们在同时加载时似乎会发生冲突。有谁知道有什么例子可以同时使用它们或者什么可以帮助防止冲突?
I would like to use both of these library on the same page but they seem to conflict when they are loaded at the same time. Does anyone know of any examples where they are both used or what might help prevent conflicts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能正在寻找 jQuery noconflict 模式:
http://api.jquery.com/jQuery.noConflict /
You are probably looking for the jQuery noconflict mode:
http://api.jquery.com/jQuery.noConflict/
我相信这是由于我设置了 o3d 代码的
window.onload = init()
函数造成的。注释掉该行并添加:
最后解决了问题。
I believe this was due to the o3d code I had setting
window.onload = init()
function of my o3d code.commenting out that line and adding:
at the end solves the problem.