blogspot.com-GA4

星期二, 8月 11, 2009

jQuery 和 Prototype 同時使用

本篇介紹如何將jQUery和Prototype同時並存使用,不過還是非常建議選一種使用比較好

// 第一種方法是直接使用 jQuery.noConflict():
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://blog.shian.tw/jquery-with-prototype.html/trackback

沒有留言: