我想使用链接在我点击它时将其重定向到另一个页面中的标签。 这是我的链接
<a href="profile.php#patientsTab" role="button" class="green" > Click here to add New Patient and Go To Patients Tab </a>
以下是我要访问的其他页面中的标签:
<a data-toggle="tab" href="#patients" id="patientsTab">
<i class="blue ace-icon fa fa-users bigger-120"></i>
Patients
</a>
我不知道它为什么不起作用。
答案 0 :(得分:0)
添加target =“_ blank”以将其定位到新标签页。
<a href="profile.php#patientsTab" role="button" target="_blank" class="green" > Click here to add New Patient and Go To Patients Tab </a>