Zend app.I在page1中有一个指向第2页中特定部分的链接:
<a href="mysite/index/index/#comments">link!</a>
我的“评论”部分:
<div name="comments">here my comments</div>
这不起作用。链接正在加载页面而不是指向指定的div。 我错在哪里?
感谢
卢卡
答案 0 :(得分:2)
试
<div><a name="comments">here my comments</a></div>
或
<div id="comments">here my comments</div>
答案 1 :(得分:2)
有no name
attribute for div
elements。片段标识符被定义为引用a
elements via their name
(旧样式,如果需要支持Netscape 4,则使用它)或any element via its id
(现代样式)。
<div id="comments">here my comments</div>