我在 html5 文档上有一个基本的 jquery 选项卡式框脚本,但是这个rel=""
:
li rel="tab1"
正在放弃验证...
jQuery是...
$(document).ready(function() {
$(".tab_content").hide();
$(".tab_content:first").show();
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active");
$(this).addClass("active");
$(".tab_content").hide();
var activeTab = $(this).attr("rel");
$("#"+activeTab).fadeIn();
});
});
我可以rel
用另一个属性替换吗?
非常感谢!