我目前有一个标签切换脚本设置,但属于标签的tekst不想玩球。我想到了一个解决方案,但为此我需要一些脚本或函数,可以将$ number的值从1更改为2并返回。问题在于,这个数字需要取决于另一个李的类别。 li与$ number或文本所在的位置无关。使用.parent .sibling或类似的东西是不可能的。
李得到一个活跃的班级。如果我能得到一个脚本/功能,检查两个人中哪一个有班级活动'并相应地设置$ number。
<script>
$(document).ready(function() {
$('.tab_table .tab-links a').on('click', function(e) {
var currentAttrValue = $(this).attr('href');
// Show/Hide Tabs
$('.tab_table ' + currentAttrValue).show().siblings().hide();
// Change/remove current tab to active
$(this).parent('li').addClass('active').siblings().removeClass('active');
e.preventDefault();
});
});
</script>
<tabs class="entry-content">
<div class="tab_table">
<ul class="tab-links">
<?php if(get_field( 'tab_1_-_naam', $id)): ?>
<li class="active <?php echo $id; ?>-1">
<a href="#<? echo $slug; ?>_tab_<?php echo $id; ?>-1">
<?php the_field( 'tab_1_-_naam', $id); ?>
</a>
</li>
<?php endif; ?>
<?php if(get_field( 'tab_2_-_naam', $id)): ?>
<li class="<?php echo $id; ?>-2">
<a "this.style.color='#5D3B08!important';" href="#<? echo $slug; ?>_tab_<?php echo $id; ?>-2">
<?php the_field( 'tab_2_-_naam', $id); ?>
</a>
</li>
<?php endif; ?>
</ul>
<?php $number=1 ; $tab_tekst='tab_' .$number. '_-_tekst'; ?>
<div class="panes">
<?php if( li class==a ctive.$id-1) { ?>
<?php if(get_field( 'tab_1_-_tekst', $id)): ?>
<div id="<? echo $slug; ?>_tab_<?php echo $id; ?>-1" class="tab-content active">
<p>
<?php the_field($tab_tekst, $id);?>
</p>
</div>
<?php endif; ?>
</div>