$("html").animate({scrollTop: $(document).height() }, "慢");如果它位于底部,请不要滚动它
我有三个隐藏 div 的按钮,当我单击一个按钮时,我希望内容滚动到底部,然后当我单击另一个按钮时,我希望页面保持在原来的位置,但加载新内容。
我尝试过变量和 if 语句
var i=0;
$('#link-slide13').click(function(){
if (i==0){//nothing's been scrolled
$("html").animate({ scrollTop: $(document).height() }, "slow");
i=1;
}else{
//don't do anything
}
});
有什么想法吗? 感谢您的回答!
编辑:抱歉,我真的认为我没有解释清楚自己, http://ephemurl.com/4w/5ws 这是我目前所拥有的,最后一个6 个部分弹跳滚动到文档底部,但我希望这种情况只发生一次,然后接下来的 5 次点击不会产生动画,因为你已经在那里了......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需使用 $(body) 而不是 $(html)
演示
http://jsfiddle.net/APebY/
您还可以在事件触发器中使用 unbind 使其仅运行一次
just use $(body) instead of $(html)
demo
http://jsfiddle.net/APebY/
You can also use unbind within the event trigger to make it run only once
不知道你到底想做什么,我想这应该对你有帮助,
祝你好运
Don't Know what exactly you're trying to do, I guess this should help you,
Good Luck
我们无法观看您的 html,但我认为您只将该功能应用于一键巫婆 id="link-slide13"。如果它必须在三个按钮中工作,请更改您的 JQuery 选择器。 (向所有按钮添加一个类,您可以通过 $(".className"))轻松选择所有按钮。
那么,什么是按钮呢?链接输入?如果按钮是链接
,您可以在函数末尾添加“return false”语句。这可以防止链接默认工作并且导航器转到文档顶部。
但是,真的……有什么问题吗?
We can't watch your html, but I think that you only have applied the function to one button witch id="link-slide13". If it must works in the three buttons change your JQuery selector. (adding a class to all buttons you can select all easy whith $(".className")).
Then, what is a button? a link an input? If the button is a link
you can add a "return false" sentence at the end of the function. This prevent that the link works as default and the navegator go to the top of the document.
But, really...what's the problem?