jQuery.noConflict();
// 將Jquery的 $ 用 jQuery 代替
jQuery(document).ready(function(){
// jQuery code in here
});
第二種方法是賦值給一個簡短的名字:
var $j = jQuery.noConflict();
// 將Jquery的 $ 用 $j 代替
$j(document).ready(function(){
// jQuery code in here
});
第三種方法,通過傳遞$給ready函數參數作為參數,就可以在ready的參數funcion中使用$:
jQuery.noConflict();
jQuery(document).ready(function($){
// jQuery code in here
});
結論: 我比較喜歡用第二種方法,原因是簡單又明瞭 , $j 開頭的就是jquery , $ 開頭的就是 prototype,也不容易跟Prototype搞混
摘自:http://calos-tw.blogspot.com/2008/04/jquery-prototype.html
沒有留言:
張貼留言