在 Bootstrap 中切换到另一个选项卡时,用户总是开始查看顶部的选项卡内容。我想知道在返回选项卡时是否有办法滚动到用户之前查看的位置。
细节:
我像这样定义了我的选项卡列表:
<ul id="main_tab" class="nav nav-tabs">
<li class="active"><a href="#users_tab_content" data-toggle="tab">Users</a></li>
Then there are more <li> values under the <ul>.
Then the content starts like so:
<div id="main_tab_content" class="tab-content">
<div class="tab-pane fade in active" id="users_tab_content">
Of course, with more <div> content tabs under the main <div>.