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.
このスクリプト.call(this)は、ページHTMLから明示的に呼び出す必要がない理由を説明する関数を使用して、毎回自分自身を呼び出すと想定しています。これは正しいです?
.call(this)
noconflictモードで実行するように変更できますか?
noconflict
本質的.noConflict()に定義を解除します$。これは、
.noConflict()
$
$.ajax(...); $("a").some_func(...);
次のように変更する必要があります:
jQuery.ajax(...); jQuery("a").some_func(...);
等々。スクリプトをそのまま変更すると、正常に機能するはずです。