“Gulir ke atas JS” Kode Jawaban

Gulir JavaScript ke atas halaman

//Instant scroll to top of page
window.scrollTo(0, 0);
TC5550

JavaScript Pergi ke atas halaman

window.scroll({
 top: 0, 
 left: 0, 
 behavior: 'smooth' 
});
Mobile Star

JS Gulir ke Atas

// this changes the scrolling behavior to "smooth"
window.scrollTo({ top: 0, behavior: 'smooth' });
Lazar

Scrool ke Jquerry Teratas

$("a[href='#top']").click(function() {
  $("html, body").animate({ scrollTop: 0 }, "slow");
  return false;
});
Strange Swan

JavaScript Pergi ke atas halaman

window.scroll({top: 0, left: 0});
//Or with jQuery
$('html,body').scrollTop(0);
//with animation
$('html, body').animate({ scrollTop: 0 }, 'fast');
Matteoweb

Gulir ke atas JS

const scrollToTop = () => window.scroll(0,0)
Noob Dev

Jawaban yang mirip dengan “Gulir ke atas JS”

Pertanyaan yang mirip dengan “Gulir ke atas JS”

Lebih banyak jawaban terkait untuk “Gulir ke atas JS” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya