1. 程式人生 > >頁面載入時給的子元素的第一個元素加class

頁面載入時給的子元素的第一個元素加class

HTML程式碼:

    <div id="xiao">
                       
<ul>

<li></li>

</ul> 
              </div>

js程式碼:

<script>

    $(function () {
        $('#xiao').children().eq(0).attr('id','tree');


//        console.log($('#d').children().eq(0).attr('id'));


        $("#tree").treeview({
            collapsed: true,
            animated: "medium",
            control: "#sidetreecontrol",
            persist: "location"
        });
    })


</script>

下面是樹狀結構外掛