Html:链接到我页面的特定部分
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
divname
属性代码> 元素。片段标识符定义为引用a 元素通过其
name
(旧样式,如果您需要支持 Netscape 4,请使用它)或 通过其
id
的任何元素(现代风格)。There is no
name
attribute fordiv
elements. Fragment identifiers are defined as referencing eithera
elements via theirname
(old style, use it if you need to support Netscape 4) or any element via itsid
(modern style).尝试
或
try
or