我有一个包含 2 列(菜单和内容 div)的 html 页面。当我单击菜单按钮时,我使用 jquery 在内容 div 中加载一个 html 页面。问题是加载的 html 页面中的锚点在 chrome 和 firefox 上不起作用,但在 IE 上有效。
我像这样用jquery加载html页面。
<script>
$( document ).ready(function() {
$("#rightcolumn").html('<object width="950" height="8000" data="getStarted.html">');
$(window).scrollTop(0);
});
</script>
我这样放置锚点:
<a href="#open">Open.</a>
<a name="open"></a>