HTML锚点在页面加载时无效

时间:2015-12-08 08:49:02

标签: html anchor

当我想用锚点引用我网页的某些部分时:" http://example.com/index.html#section_11"它没有去那里。

但是,一旦页面完全加载,然后我转到地址栏,突出显示此URL并按回车键,它就可以了!

<div class="ui-paddingbox dotted_bg" id="section_11">
some text
</div>

2 个答案:

答案 0 :(得分:0)

主持人只会去标签,我想。试试这个:

  <div class="ui-paddingbox dotted_bg">
    <a name="section_11" />
    some text
  </div>

确保加载后元素不会被添加(例如使用jquery调用)

答案 1 :(得分:0)

试试这个:

<a href="#section_11">link</a>