关于在mousedown事件中写animate动画会阻止默认事件发生.
<!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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不跳转是因为 return false 但是会触发click
不知道你是不是其他地方写错 我测试从jq1.7--2.1都没有出现你说的问题