2011-12-26 61 views
0

如何在正文的特定部分使用jQuery文件。因爲我改變了jQuery的工具文件的原始版本,我想在一個HTML頁中使用這兩種文件(改變原)如何在正文的特定部分使用JS文件

+0

http://stackoverflow.com/questions/1566595/can-i-use-multiple-versions-of-jquery-on-the-same-page – 2011-12-26 10:57:04

回答

1

jQuery.noConflict()**v1.1**加入到支持與其他代碼的網頁上加載jQuery的使用了global **$** variable;並可以很容易地加載的jQuery的多個版本在同一頁面

。例如:

<script type="text/javascript" src="other_lib.js"></script> 
<script type="text/javascript" src="jquery.js"></script> 
<script type="text/javascript"> 
    jQuery.noConflict(); 
    jQuery(document).ready(function($) { 
    // Code that uses jQuery's $ can follow here. 
    }); 
    // Code that uses other library's $ can follow here. 
</script> 

對於詳細的解釋和指導。請訪問以下內容:

http://api.jquery.com/jQuery.noConflict/

Can I use multiple versions of jQuery on the same page?

http://blog.nemikor.com/2009/10/03/using-multiple-versions-of-jquery/

希望這有助於。

+1

的可能重複它不應該是'的jQuery(文檔) .ready(function($){' – jcubic 2011-12-26 11:15:03

+0

是的,感謝您的更正。 – AlphaMale 2011-12-26 11:16:25

相關問題