我希望我的 JQuery 滚动速度是瞬时的(不平滑/不快,但像经典的锚 href="#" 一样瞬时)。这似乎与队列有关,但我该如何更改我的脚本?感谢您的帮助。
https://jsfiddle.net/7f1Ldeqr/
<div style="height:3000px">
<a href="#" id="link">Down</a>
<a name="here" style="position:relative; top:2000px;"></a>
</div>
<script src='http://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.js'></script>
<script>
function scrolling(aid){
var aTag = $("a[name='"+ aid +"']");
$('html,body').animate({scrollTop: aTag.offset().top},'fast');}
$("#link").click(function() {
scrolling('here');});
</script>
慕工程0101907
江户川乱折腾
繁花不似锦
相关分类