隐藏元素而不会溢出

时间:2015-04-27 13:38:41

标签: jquery html dom

如何检测加载的页面是否有溢出/滚动? 我想隐藏一个元素"去顶部"主页上的按钮(在大多数现代移动设备上没有溢出)并将其保留在其他页面上。

以下是page和屏幕截图。

Element to hide

提前感谢任何建议

2 个答案:

答案 0 :(得分:1)

默认情况下隐藏button并尝试使用:

$(window).scroll(function() {
   // Show the buttom here
   $("#button").show();
});

答案 1 :(得分:0)

你可以试试这个:

$(document).ready(function(){
if($('body').height()>window.innerHeight)
{
  $('.btn').css('display','block');
}
else{
  $('.btn').css('display','none');
}
});