“返回顶部”与穆工具
谁能给我一个类似的 mootools 脚本。我正在使用 jquery,我需要一个类似的函数来与 mootools 一起使用:
$(document).ready(function(){
if( $(".page").height() < $(window).height() ) {
$(".backtop").hide();
}
else {
$(".backtop").show();
}
});
我想要的是一个“返回顶部”按钮,仅当 div.page 大于屏幕窗口时才会出现。
Can anyone give me a similar script for mootools. I'm using jquery and I need a similar function like this to use with mootools:
$(document).ready(function(){
if( $(".page").height() < $(window).height() ) {
$(".backtop").hide();
}
else {
$(".backtop").show();
}
});
What I want is a "back to top" button that only appears when the div.page is bigger than the screen window.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请注意,有时在旧版 ie 上您可能需要包装 $(window) 或 $(document)。
http://jsfiddle.net/wD6RY/
note sometimes on old ie you might have to wrap $(window) or $(document).
http://jsfiddle.net/wD6RY/