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の競合なしモードを探しています:
http://api.jquery.com/jQuery.noConflict/
これは、o3dコードの設定window.onload = init()機能を持っていたo3dコードによるものだと思います。
window.onload = init()
その行をコメントアウトして追加します。
jQuery(function() { init(); }
最後に問題を解決します。