0

我在 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用另一个属性替换吗?

非常感谢!

4

1 回答 1

3

我建议使用data属性。

例如

<li data-target="tab1"></li>

$(this).data('target');
于 2013-02-04T14:42:23.790 回答