【发布时间】:2016-02-26 06:20:57
【问题描述】:
页面内的链接有问题。这是我在页面中使用的 jQuery 代码的一部分
$.fn.stopAtTop= function () {
var $this = this,
$window = $(window),
thisPos = $this.offset().top,
//thisPreservedTop = $this.css("top"),
setPosition,
under,
over;
under = function(){
if ($window.scrollTop() < thisPos) {
$this.css({
position: 'absolute',
top: ""
});
setPosition = over;
}
};
over = function(){
if (!($window.scrollTop() < thisPos)){
$this.css({
position: 'fixed',
top: 0
});
setPosition = under;
}
};
setPosition = over;
$window.resize(function()
{
bumperPos = pos.offset().top;
thisHeight = $this.outerHeight();
setPosition();
});
$window.scroll(function(){setPosition();});
setPosition();
};
这是一个例子DEMO
当我向下滚动时,一切正常,但当我想转到页面顶部时,这是不可能的。我知道这个问题是脚本修复了div,但我不知道如何修复它。有任何想法吗?
【问题讨论】:
-
在演示中的 html 中,您在两个链接中都链接到
#four,这是故意的吗? -
不,那是个错误。我修好了。
标签: javascript jquery html css href