Html:链接到我页面的特定部分

发布于 2024-11-09 12:08:24 字数 306 浏览 0 评论 0原文

Zend 应用程序。我在 page1 中有一个链接指向 page2 中的特定部分:

<a href="mysite/index/index/#comments">link!</a>

我的“评论”部分:

<div name="comments">here my comments</div>

这不起作用。并且该链接正在加载页面,但没有定位到指定的 div。 我哪里错了?

谢谢卢卡

Zend app.I have a link in page1 pointing to specific section in page2:

<a href="mysite/index/index/#comments">link!</a>

my section "comments":

<div name="comments">here my comments</div>

This is not working.And the link is loading the page without targetting to the specified div.
Where Am I wrong?

thanks

Luca

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沉默的熊 2024-11-16 12:08:25

divname 属性代码> 元素。片段标识符定义为引用 a 元素通过其 name(旧样式,如果您需要支持 Netscape 4,请使用它)或 通过其 id 的任何元素(现代风格)。

<div id="comments">here my comments</div>

There is no name attribute for div elements. Fragment identifiers are defined as referencing either a elements via their name (old style, use it if you need to support Netscape 4) or any element via its id (modern style).

<div id="comments">here my comments</div>
_蜘蛛 2024-11-16 12:08:25

尝试

<div><a name="comments">here my comments</a></div>

<div id="comments">here my comments</div>

try

<div><a name="comments">here my comments</a></div>

or

<div id="comments">here my comments</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文