jQuery.noConflict();
解決 jQuery 與 protoype 的衝突方法, 依照這個順序 include .js:
2. 緊接著加上一行
var $jq = jQuery.noConflict();
3. 再把 prototype include 進來.
4. 最後你可以使用
jQuery
$jq
(function($) {/* code here, you can use $ */})(jQuery);
解決 jQuery 與 protoype 的衝突方法, 依照這個順序 include .js:
var $jq = jQuery.noConflict();
jQuery
$jq
(function($) {/* code here, you can use $ */})(jQuery);