提交表单后,我无法打开特定选项卡的备份。我正在使用 Twitter Bootstrap 2.1.0。基本上,提交 from 时,它将返回到第一个选项卡,而不是提交表单的选项卡。这是我的代码:
<ul class="nav nav-tabs" id="myTab">
<li class="active"><a href="#tab1">Tab 1</a></li>
<li><a href="#formtab">Form Tab</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active fade in" id="tab1">
Content goes in here
</div>
<div class="tab-pane fade in" id="formtab">
<form action="http://myurl.com#formtab" class="center active" method="post">
form stuff goes in here
</form>
</div>
<div>
我认为在链接末尾添加#id 会使浏览器打开该特定选项卡,但它会返回到 tab1 选项卡。任何帮助,将不胜感激。谢谢