父子元素都有拖动功能,如何阻止父元素的事件。
父子元素都有拖拽功能,怎么写才能使父子元素各自的拖拽功能不互相影响。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="https://cdn.bootcss.com/jquery/1.2.6/jquery.min.js"></script>
</head>
<body>
<div class="container">
<div class="bar"></div>
<div class="poite"></div>
</div>
<script>
$(".container").mousedown(function (event) {
...
$(document.body).mousemove(function (event) {
....
});
});
$(".bar").mousedown(function (event) {
...
$(document.body).mousemove(function (event) {
....
});
});
$(".poite").mousedown(function (event) {
...
$(document.body).mousemove(function (event) {
....
});
});
</script>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
阻止事件冒泡