2014-03-05 66 views
1

我使用jQuery的兩個版本,我想開始使用jQuery移動。看下面的代碼:jquery noConflict jquery.mobile

<script type="text/javascript" src="jquery-1.4.2.min.js"></script> 
<script type="text/javascript" src="jquery-2.1.0.min.js"></script> 
<script type="text/javascript">var jQuery_2_1_0 = $.noConflict(true);</script> 
<script type="text/javascript" src="jquery.mobile-1.4.2.min.js"></script> 

現在的問題是,jquery.mobile認識到1.4.2版本的jquery。

如何告訴jquery.mobile使用2.1.0版本?

!! 由於遺留代碼和一個jQuery版本現在不是一個選項,所以noConflict不能用於1.4.2版本。

回答

0

我知道這個問題是舊的,但它仍然是開放的。

這裏是我的解決方案的一個片段:

<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/1.2.6/jquery.min.js'></script> 
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> 
<script src='http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js'></script> 

<script> 
    $(function() { 
    // jQuery Mobile has loaded with the newer version of jQuery, so 
    // now we set $ back to the original version of jQuery & set new version to jq2 
    var jq2 = jQuery.noConflict(); 
    }); 
</script> 

參見CodePen休息:http://codepen.io/rothkj1022/pen/gapNeP

+0

謝謝。有效。 – memic84

+0

@ sead.memic您可以將此標記爲接受的答案嗎?謝謝! –