2
我製作了手風琴菜單像here一樣。問題是,當你點擊菜單項時,瀏覽器將嘗試跳轉(並滾動)到target
以確保目標在視圖端口中可見。有沒有解決辦法來防止跳躍,除了這樣的事情?CSS3:目標並防止瀏覽器跳轉行爲
$("a[href^=#]").on("click", function(e) {
e.preventDefault();
history.pushState({}, "", this.href);
});
JS來源:Fighting the jump