我有来自here的代码,但它给了我一个错误。
Uncaught TypeError: Failed to execute 'scroll' on 'Window': 2 arguments required, but only 1 present.
我安装了jQuery 1.8.3,脚本位于页面底部。代码:
<script type='text/javascript'>
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 150) {
$(".navigation").addClass("darkHeader");
} else {
$(".navigation").removeClass("darkHeader");
}
});
</script>
有任何帮助吗?在jsfiddle一切正常。代码在IPBoard 3.4.8上。