gpt4 book ai didi

javascript - 我如何延迟这个功能

转载 作者:行者123 更新时间:2023-11-28 15:24:15 25 4
gpt4 key购买 nike

我有这个代码:

$('a[href*=#]').click(function() {

$('html, body').animate({
scrollTop: $($.attr(this, 'href')).offset().top
}, 500);

return false;
});

但是点击链接后我需要600ms延迟,以便我的页面有机会执行我设置为500ms的其他操作,提前谢谢您

最佳答案

jQuery 有一个 delay方法

$('a[href*=#]').click(function(){
$('html, body').delay(600).animate({
scrollTop: $( $(this).attr('href') ).offset().top
}, 500);

return false;
});

关于javascript - 我如何延迟这个功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29804891/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com