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(...);
等等。像这样修改脚本,它应该可以正常工作。