//滚动条滚动时右侧内容始终固定在屏幕右侧滚动的位置 $(window).scroll(function() { var top = $(window).scrollTop(); if(top>=690){ // alert(11); $(".w_right").addClass("w_fixed"); }else{ $(".w_right").removeClass("w_fixed"); } });
.w_fixed{ position: fixed; top:-50px; right: 350px; }