$(function(){ 

  $(document).scroll(function(){
  

 var scrollTops=$(window).scrollTop();
if (scrollTops>43){
$("header").addClass("headerFixed");
}else{
$("header").removeClass("headerFixed");
}
  })


  })

})

posted on 2018-02-06 12:36  东西南北212  阅读(1107)  评论(0编辑  收藏  举报