效果如图:代码如下: 悬浮窗口示例 window.onscroll = function () { var div = document.getElementById("divSuspended"); div.style.top = document.body.scrollTop; } window.onresize = window.onscroll; function init(){ var df = document.createDocumentFragment(); for(var i=0;i<20;i++){ var p = document.createElement("p"); p.appendChild(document.createTextNode(" Line "+i)); df.appendChild(p); } document.body.appendChild(df); window.onscroll(); } Try scrolling this window. 这是悬浮窗口 [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]