✔ 最佳答案
首先在網頁裏弄一個"功能按扭":
<div style="position: absolute" id="button">Top</div>
跟著要令按扭跟著捲軸一齊走:
<script type="text/javascript">
var h = document.body.clientHeight - 30;
var w = document.body.clientWidth - 100;
function reposition() {
add_h = (window.pageYOffset ? window.pageYOffset : document.body.scrollTop) + h;
document.getElementById('button').style.top = add_h + 'px';
document.getElementById('button').style.left = w + 'px';
setInterval(reposition, 100);
</script>
將這些貼在<body>與</body>之間就應該可以了
其中document.body.clientHeight - 30的30和document.body.clientWidth - 100的100是可以隨你自己轉的