我正在尝试通过跳到 anchor 来打开div。开头部分正在工作,但没有跳到指定的 anchor

这是我的脚本:

<script type="text/javascript">
    function spoil(id){
        if (document.getElementById) {
            var divid = document.getElementById(id);
            divid.style.display = (divid.style.display = 'block');
            window.location = '#' + id;
        }
    }
</script>

<a href="http://example.com" onclick="spoil('thanks');" title="hello">
    <img src="images/gfx.png" alt="world" width="300" height="300"/>
</a>

任何想法有什么问题吗?
干杯。

最佳答案

看起来您正在取消隐藏剧透div。如果是这样,则可以按如下所示将元素滚动到 View 中:

function spoil(id) {
    var divid = document.getElementById(id);
    divid.style.display = 'block';
    divid.scrollIntoView(true);
    return false;
}
...
<a href="#" onclick="return spoil('thanks');" title="hello"><img src="images/gfx.png" alt="world" width="300" height="300"/></a>

关于javascript - JavaScript-跳转至 anchor ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5694686/

10-08 21:41