我使用以下代码可以在标签之间切换。但我无法使用<a href="#tab5">Go to tab5</a>
链接到标签这不起作用。
我希望使用我当前的代码使其工作。
我需要在jQuery文档上添加什么.ready?
我正在寻找2天,但我找不到合适的解决方案。谢谢提前
jQuery(document).ready(function() {
jQuery('.tabs .tab-links a').on('click', function(e) {
var currentAttrValue = jQuery(this).attr('href');
// Show/Hide Tabs
jQuery('.tabs ' + currentAttrValue).show().siblings().hide();
// Change/remove current tab to active
jQuery(this).parent('li').addClass('active').siblings().removeClass('active');
e.preventDefault();
});
});