我在选项卡中的引导分页时遇到麻烦:用按钮更改页面也会更改选项卡(显示了该组的第一个)。我必须单击精确选项卡以再次显示分页。
这是代码:-
<!--tab 5, "land control"-->
<div class="tab-pane fade" id="5">
<div class="col-md-6">
<p>Land control entity code : <?= $rep2['cod_sssite']; ?></p>
<p>Site name : <?= $rep2['nomsite']; ?></p>
<p>Area : <?php echo $fonction->surf_maitrise($codemaitrise);?> ha</p>
</div>
<!--Gestion des pages dans l'onglet "maîtrise". cf. https://www.w3schools.com/bootstrap/bootstrap_pagination.asp-->
<div class="example">
<nav>
<ul class="pagination"> <!--"pagination" class to create page numbers-->
<li> <!--Bouton "suivant"-->
<a href="javascript:void(0)" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<?php for ($i = 1 ; $i <= $nb_pages ; $i++) // Creating buttons with page numbers
{
echo '<li><a href="site?code=' .$code . '&p=' . $i . '">' . $i . '</a></li>';
} ?>
<li> <!--Bouton "Précédent"-->
<a href="javascript:void(0)" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>
</div>`
简而言之:我在选项卡中有一个引导分页。更改页面后如何自动返回当前选项卡? (或更改页面时如何不更改标签?)
感谢前进