好吧,我阅读了一些线程和 jquery 的 wiki,但不知何故我无法解决我的问题。
尝试添加 jQuery.noConflict() 因为如果我运行某些 jQuery 库会发生冲突。如果我像 jQuery Wiki 上所说的那样添加 jQuery.noConflict()。这两个脚本都不起作用。
剧本
$(document).ready(function() {
//Default Action
$(".tab_content").hide();
$("ul.tabs li:first").addClass("active").show();
$(".tab_content:first").show();
//On Click Event
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active");
$(this).addClass("active");
$(".tab_content").hide();
var activeTab = $(this).find("a").attr("href");
$(activeTab).fadeIn();
return false;
});
});
如果我在这里添加 jQuery.noConflict()
$.noConflict();
jQuery(document).ready(function($) {
//Default Action
$(".tab_content").hide();
$("ul.tabs li:first").addClass("active").show();
$(".tab_content:first").show();
//On Click Event
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active");
$(this).addClass("active");
$(".tab_content").hide();
var activeTab = $(this).find("a").attr("href");
$(activeTab).fadeIn();
return false;
});
});