漂亮的Tab标签
下载次数:1
文件大小:2.93KB
所需积分:0
QQ联系购买积分:3331653644(1元=10积分)
(function($) {
var tabs = $(".tabs li a");
tabs.click(function() {
var content = this.hash.replace('/','');
tabs.removeClass("active");
$(this).addClass("active");
$("#content").find('p').hide();
$(content).fadeIn(200);
});
})(jQuery);
0 条评论