我正在使用幾個包含MenuFader(http://css-tricks.com/examples/MenuFader/),twitter feed和timestamp的jQuery腳本。另外我有一些Mootools腳本,包括Barackslideshow(http://devthought.com/wp-content/moogets/BarackSlideshow/demo.html)。最後,我有一個帶有從twitter主頁獲取的工具提示的滾動報價器。我最初與Jquery MenuFader和Mootools BarackSlideshow發生衝突,但使用jQuery.noconflict()輕鬆解決了這個問題。並用jQuery替換所有對應的$。多個jQuery.noConflict()實例
不幸的是,在我從Twitter上添加滾動代碼後,Mootools BarackSlideshow和Jquery MenuFader不再有效。
我試圖實現jQuery.noconflict();然後$ .noconflict();那麼var j = jQuery.noconflict();並像我之前做的那樣替換$,但我無法讓腳本很好地播放。
任何幫助非常感謝...我一直在這一整天工作。我很新的JavaScript,但已設法解決大多數問題與一點持久性。請看看下面的腳本:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.0/jquery.min.js" type="text/javascript"></script>
<script src="http://a2.twimg.com/a/1274914417/javascripts/fronts.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
$(function() {
setTimeout(function() { $(".twtr-widget").append($("<div></div>").attr("class", "twtr-fade")); }, 0);
(function() {
var tabIndex = $("[tabindex]:last").attr("tabIndex");
var setTabIndex = function() {
$(this).attr("tabindex", ++tabIndex);
}
$(".footer-nav a").each(setTabIndex);
$(".language-select a").each(setTabIndex);
})();
$("#signup_submit").scribe({
event_name: "signup_submit_click",
experiment: "ab_signup_button",
bucket: "sign_up"
}, "www_ab_tests");
$('#signin_menu').isSigninMenu();
new FrontPage().init();
});
//]]>