jquer判断共滚条是否到了底

$(window).scroll(function()
{		
	if ($(document).scrollTop() >= $(document).height() - $(window).height())
	{
	     alert("到底部了");
         }
});

你可能感兴趣的:(滚动条,底部)