我写了这些简单的代码。我的问题是 jquery 可以工作,但是在设置滚动位置后,我的页面正在刷新并且设置引用它的默认位置。我怎样才能停止刷新?
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
<script>
$(document).ready(function () {
$("button").click(function () {
$("div").scrollTop(30);
});
});
</script>
<body>
<form id="form1" runat="server">
<div style="border: 1px solid black; height: 150px; overflow: auto">
<ul>
<li>
<img width="80px" style="margin-bottom: 5px;" height="70px" alt="" class="img_gallery"
src="Images_slider/1.jpg" />
</li>
<li>
<img width="80px" style="margin-bottom: 5px;" height="70px" alt="" class="img_gallery"
src="Images_slider/2.jpg" />
</li>
</ul>
</div>
<br>
<button>
Return the vertical position of the scrollbar</button>
</form>