Jquery 滚动到锚点在 Internet Explorer 上不起作用

发布于 2024-11-09 23:59:47 字数 966 浏览 0 评论 0原文

我是 javascript 和 jquery 的新手。我正在使用一些预制的东西放在我的网站上。 http://brainscuker.altervista.org/

当我单击链接向下滚动到锚点时,它最初到达正确的位置,但不久之后,它又向上滚动。

它在 Firefox 和 Chrome 上运行良好。

我正在使用的脚本是这样的。

$(document).ready(function() {
  $("a.who").anchorAnimate()
});

jQuery.fn.anchorAnimate = function(settings) {

settings = jQuery.extend({
    speed : 800
}, settings);   

return this.each(function(){
    var caller = this
    $(caller).click(function (event) {  
        event.preventDefault()
        var locationHref = window.location.href
        var elementClick = $(caller).attr("href")

        var destination = $(elementClick).offset().top;
        $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, settings.speed, function() {
            window.location.hash = elementClick
        });
        return false;
    })
})
}

感谢任何最终的帮助!

I'm new with javascript and jquery. I'm using some premade stuff to put on my site.
http://brainscuker.altervista.org/

When I click on the link to scroll down to the anchor, it intially goes to the right place, but soon after, it scroll back up.

It works fine on firefox and chrome.

The script I'm using is this.

$(document).ready(function() {
  $("a.who").anchorAnimate()
});

jQuery.fn.anchorAnimate = function(settings) {

settings = jQuery.extend({
    speed : 800
}, settings);   

return this.each(function(){
    var caller = this
    $(caller).click(function (event) {  
        event.preventDefault()
        var locationHref = window.location.href
        var elementClick = $(caller).attr("href")

        var destination = $(elementClick).offset().top;
        $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, settings.speed, function() {
            window.location.hash = elementClick
        });
        return false;
    })
})
}

thx for any eventual help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遮云壑 2024-11-16 23:59:47

window.location.hash 在 IE 上有问题。目前正在解决类似的问题,必须使用scroll或scrollTo函数才能使其工作。

window.location.hash is buggy on IE. Currently working on a similar problem, have to use the scroll or scrollTo function to make it work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文