背景:height: 100%; overflow: auto; 採用錨點回到頂部失效html
最後換用了另外一種方式jquery
依賴:jQueryajax
解決方法:bash
$('#btn').click(function() {
$('html,body').animate({scrollTop: '0px'}, 800);
var container = $('#div1');
$(container).scrollTop(0);
})
複製代碼