关于在mousedown事件中写animate动画会阻止默认事件发生.

发布于 2022-09-01 18:30:50 字数 838 浏览 14 评论 0

<!DOCTYPE HTML>
<html lang="en-US">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Demo</title>
    <style type="text/css">
    *{margin:0;padding:0;box-sizing:border-box;}
    html,body{
        height:2000px;
    }
    </style>
</head>
<body>
    <a href="http://www.baidu.com">baidu.com</a>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
    $('a').click(function(){
        console.log(2);
    });
    
    $('a').mousedown(function(){
        console.log(1);
        $('html,body').stop(false, true).animate({scrollTop: '500'}, 500);

    });
</script>
</body>
</html>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

◇流星雨 2022-09-08 18:30:50

不跳转是因为 return false 但是会触发click
不知道你是不是其他地方写错 我测试从jq1.7--2.1都没有出现你说的问题

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文