我正在尝试将我的第二个 li 标签显示为默认活动选项卡。我的jQuery代码是
<script type="text/javascript">
$(document).ready(function(){
$('#newtabs div').hide();
$('#newtabs div:first').show();
$('#newtabs ul li:first').addClass('active');
$('#newtabs ul li a').click(function(){
$('#newtabs ul li').removeClass('active');
$(this).parent().addClass('active');
var currentTab = $(this).attr('href');
$('#newtabs div').hide();
$(currentTab).show();
return false;
});
});
</script>
有什么建议吗?