我要做的是动态加载 jQuery 和其他库的修改版本,以便这些修改版本只能在我调用它们的本地范围内访问,并避免与同一库的其他版本发生冲突。例如:
//Some global code that uses regular jQuery
(function(win, doc, undefined){
loadMyJQuery();
//Some code that uses my modified version
})(window,document);
非常感谢!
我要做的是动态加载 jQuery 和其他库的修改版本,以便这些修改版本只能在我调用它们的本地范围内访问,并避免与同一库的其他版本发生冲突。例如:
//Some global code that uses regular jQuery
(function(win, doc, undefined){
loadMyJQuery();
//Some code that uses my modified version
})(window,document);
非常感谢!