var Height=document.body.clientHeight;
$(document).bind("mousewheel DOMMouseScroll scroll", function (e) {
if ($(window).scrollTop()==Height) {
alert(1);
}
});
为什么alert(1)不执行,改成
if ($(window).scrollTop()>=Height) {
alert(1);
}时才执行。可是我只想让alert(1)执行一次
stone310
李晓健
相关分类