我正在尝试为页面元素创建一个锚点。有一个选项卡界面。在 html 中我可以看到他们的链接是这样的:
http://example.com/index.php/service#tab-1
http://example.com/index.php/service#tab-2
http://example.com/index.php/service#tab-3
http://example.com/index.php/service#tab-4
所以我有 4 个 div,id 为 tab-1、tab-2 等。
如何从另一个视图文件为它们创建锚点?当我尝试这个时:
<a href="<?=site_url();?>/service#tab-1">give it a try</a>
它转到页面 /service 但不专注于 #tab-1 。它正在使用纯 html,但我无法使用 codeigniter
感谢帮助!