html跳到指定位置的方法:1、底下定好容器的id,在a標籤的href中用# id,就可以實現跳轉了;2、使用window.scrollTo方法,語法“ window.scrollTo({ top,left ,behavior})」。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
#純html實作
以id為標記的錨點
function heightToTop(ele){ //ele为指定跳转到该位置的DOM节点 let bridge = ele; let root = document.body; let height = 0; do{ height += bridge.offsetTop; bridge = bridge.offsetParent; }while(bridge !== root) return height; } //按钮点击时 someBtn.addEventListener('click',function(){ window.scrollTo({ top:heightToTop(targetEle), behavior:'smooth' }) })
以上是html怎麼跳到指定位置的詳細內容。更多資訊請關注PHP中文網其他相關文章!