谢谢!
$(document).ready(function() {
var navoffeset=$(".header").offset().top;
$(window).scroll(function(){
var scrollpos=$(window).scrollTop();
if(scrollpos >=navoffeset){
$(".header").addClass("fixed");
.addclass("color");//想给导航再加一个样式,但是到这里提示错误。
}else{
$(".header").removeClass("fixed");
}
});
});
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
链式调用注意中间不要加分号
其实可以这样
前面多了个分号