那麼不管你是否從全球範圍刪除變量或者不是你將不得不做一個找到&替換改變的庫點,其中jQuery的版本;因爲他們要麼在全球範圍內使用$或jQuery的&衝突,反正。你可以嘗試這樣的事:jQuery的jQuery的
的
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.js"></script>
<script type="text/javascript">
jQuery.noConflict();
(function(window,$) {
window.jQuery_v1 = $;
})(window,jQuery);
delete jQuery;
</script>
加載第二個版本使用的
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js"></script>
<script type="text/javascript">
jQuery.noConflict();
(function(window,$) {
window.jQuery_v2 = $;
})(window,jQuery);
delete jQuery;
</script>
負載第一個版本的jQuery
的兩個版本
<script type="text/javascript">
// this is now one version of jQuery
console.log(jQuery_v1);
// this is now another version of jQuery
console.log(jQuery_v2);
</script>