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.min.js 1.9.1 ファイルが必要です。しかし、私のページには、jquery.min.js 1.8.1 を使用して動作するナビゲーション バーがあります。
現在、これらのファイルは両方とも競合しており、どうすればよいかわかりません。
jQuery.noConflict を使用すると、複数のバージョンの jQuery を同じページに共存させることができます。例えば
<script src='jquery-1.9.1.js'></script> <script> var jq132 = jQuery.noConflict(); </script> <script src='jquery-1.8.1.js'></script> <script> var jq142 = jQuery.noConflict(); </script>