在Bootstrap中,可以使用以下方法将当前页面保留在ul中:
<ul class="nav nav-tabs">
<li class="active"><a href="#home">Home</a></li>
<li><a href="#profile">Profile</a></li>
<li><a href="#messages">Messages</a></li>
<li><a href="#settings">Settings</a></li>
</ul>
<div id="home">
<h3>Home</h3>
<p>This is the home page.</p>
</div>
<div id="profile">
<h3>Profile</h3>
<p>This is the profile page.</p>
</div>
<div id="messages">
<h3>Messages</h3>
<p>This is the messages page.</p>
</div>
<div id="settings">
<h3>Settings</h3>
<p>This is the settings page.</p>
</div>
$(document).ready(function(){
$('.nav-tabs a').click(function(){
$(this).tab('show');
});
});
这样,当用户点击导航菜单或选项卡中的链接时,页面将会切换到对应的内容,并保持在ul中显示当前页面。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云