<script>
$(document).ready(function () {
$("#button").click(function () {
window.location.href = "page2.aspx";
$('html, body').animate({
scrollToElement ("#div").offset().top
}, 2000);
});
});
</script>
アイデアは、ページ 1 のボタンをクリックすると、ページ 2 にリダイレクトされ、jQuery を使用して特定の要素にスクロールするというものです。