$().scroll(function(){
……
})
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style type="text/css"> body{height:1800px;} #box1,#box2 { display:inline-block; width:100px; height:100px; } #box1 { background-color:Red; } #box2 { background-color:Orange; position:fixed; } </style> <script src="js/jquery-1.12.4.min.js"></script> <script> $(function() { //獲取box2距離頂部的距離 var top = $("#box2").offset().top; //根據捲動距離判斷定位 $(window).scroll(function() { //當捲軸距離大於box2距離頂部的距離時,設定固定定位 if ($(this).scrollTop() > top) { $("#box2").css({ "position": "fixed", "top": "0" }); } //當捲軸距離小於box2距離頂部的距離時,設定相對定位 else { $("#box2").css({ "position": "relative" }); } }); }) </script> </head> <body> <div id="box1"></div><br /> <div id="box2"></div> </body> </html>預覽效果如圖 1 所示。