CSS如何禁用window.onscroll?

时间:2014-06-02 08:44:34

标签: javascript html css

问题:简单的功能没有调用

window.onscroll = function() { 
    console.log("scroll");
}

如果我从页面中删除CSS链接

,它将起作用
<link rel="stylesheet" href="/blog/css/style.css" type="text/css">

问题: CSS代码如何禁用Javascript函数window.onscroll?

页面:http://swimbi.com/blog/

CSS:http://swimbi.com/blog/css/style.css

1 个答案:

答案 0 :(得分:4)

您实际上正在滚动容器div。 如果您这样做,事件就会触发:

document.getElementById("container").onscroll = function() { 
    console.log("scroll container"); 
}

编辑:看起来在页面上发生了变化。如果您在上面的页面上使用它,它可以正常工作:

jQuery("body").on("scroll", function() { 
    console.log(this) 
})