我想在用户点击另一个页面的链接后,将用户重定向到特定的标签页。下面是第一页的代码:index.html
<div class="products-btn">
<a href="products.html#pills-profile">view all</a>
</div>
第2页产品.html:
<ul class="nav nav-pills justify-content-center" id="pills-tab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="pills-home-tab" data-bs-toggle="pill" data-bs-
target="#pills-home" type="button" role="tab" aria-controls="pills-home" aria-
selected="true">products</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="solve" data-bs-toggle="pill" data-bs-target="#pills-
profile" type="button" role="tab" aria-controls="pills-profile" aria-
selected="false">solutions</button>
</li>
</ul>
我想重定向用户从产品的按钮到解决方案选项卡。我正在使用 Bootstrap 5.1在我的所有网页。
5条答案
按热度按时间yyyllmsg1#
这是有点老了,所以不知道你是否找到了答案,但这是我的工作。
在 Bootstrap 5文档中找到:https://getbootstrap.com/docs/5.1/components/navs-tabs/#via-javascript
2g32fytz2#
只需在链接中的“#”
<a href="products.html#solve">view all</a>
后输入标签的IDoalqel3c3#
检查根文件夹并写入从
index.html
到products.html
的完整路径然后加上这个
示例:
我有索引和文件夹名为
folder1
在这个文件夹中,有另一个名为folder2
的文件夹包含产品页面:另一个例子:
我想回到
index.html
:../
表示返回上一个/父文件夹anchor mozilla
ccrfmcuu4#
我还重新搜索了很多,这里我根据bootstrap 5编写代码,我有两个文件index.html和service.html,在service.html中,我有直接从索引菜单服务打开的选项卡
ao218c7q5#
如果要从product.html移动到solution.html,请单击,您可以使用href: