複数のプラグインが jquery のバージョンで競合しているという問題に遭遇しました。Google で検索したところ、最終的には 1 つのバージョンの jquery を使用し、コードをそのバージョンの jquery に更新する必要があることがわかりました。ただし、好奇心から、次のことを行うとどうなるか知りたいです。
<include latest jquery>
<include script that uses jquery> <---and this jquery code is called back or triggered in some event handler function.. what happens then? what jquery $ version is used? the last jquery object that was added (the 'yet another version of jquery' )
<include some other version of jquery>
<include yet another version of jquery>
jqueryのどのバージョンが使用されていますか? なぜ?具体的には、各スクリプトの読み込みと実行はどのように行われるのでしょうか? 最新の jquery の $ エイリアスを呼び出すだけですか? ご協力ありがとうございました。