jQuery索引值&做选项卡

jQuery索引值

.listli{


height:30px;


margin-bottom:10px;


background-color:gold;

}

$(function(){

$('.list li').click(function(){

//alert(this.innerHTML);//弹出标签中的内容

alert($(this).index());//弹出下标

}

做选项卡

jQuery做选项卡



tab文字内容一

tab文字内容二

tab文字内容三

你可能感兴趣的:(jQuery索引值&做选项卡)