我已经用谷歌搜索并在stackoverflow中看到了一些问题,但其中任何一个都对我没有帮助我有一个动画,因为我想将我的光标向下移动到最后显示的记录。因此。我已经编写了以下代码。我正在获得所需的输出。请帮助我
function Scrolldown() {
window.scrollBy(0, 1000);
}
$(document).ready(function () {
$("a").animate({
marginLeft: "0.2in"
}, 10).first().show(150, function showNext() {
$(this).next().show(150, showNext);
});
});
window.onload = Scrolldown();