为什么这样传参能获取到id值,可是却没有效果,内容区域切换不了,求一个简单的封装方法
<script>
function tab(obj){
var ls = obj;
console.log(obj);
console.log($(ls));
$(".news-tab a").click(function(){
$(this).addClass("newest").siblings().removeClass('newest');
var index = $(this).index();
$("ls .ck-box .js-cli-con").eq(index).addClass("show").siblings().removeClass("show");
})
}
tab("#one");
tab("#two");
</script>
相关分类