我需要做额外的一步吗?我希望我的标签会突出显示,但它不起作用,虽然我使用js来调用,如$(this).tab('show')
答案 0 :(得分:0)
你在引用div时调用'this',而不是tab。您需要使用标签本身的类名。
答案 1 :(得分:0)
这是代码工作:
$('.stat-number-desc').click(function (e) {
e.preventDefault()
$(this).tab('show');
$('.stat-wrap').find('.stat-number-desc').css('background-color','none');
$(this).css('background-color','blue');
})
根据需要将蓝色变为蓝色。
<强> DEMO 强>