jquery写tab切换,三行代码搞定
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery写tab切换,三行代码搞定相关的知识,希望对你有一定的参考价值。
<script type="text/javascript">
$("button").on("click",function(){
var index=$(this).index();//下标,相当于js中的for循环
$("div").eq(index).show().siblings("div").hide();
})
</script>
//html结构自行添加
以上是关于jquery写tab切换,三行代码搞定的主要内容,如果未能解决你的问题,请参考以下文章