这是我刚刚编写的一个快速jQuery插件,可以满足您的要求:
$.fn.followTo = function (pos) { var $this = this, $window = $(window); $window.scroll(function (e) { if ($window.scrollTop() > pos) { $this.css({ position: 'absolute', top: pos }); } else { $this.css({ position: 'fixed', top: 0 }); } });};$('#yourDiv').followTo(250);


