0
点赞
收藏
分享

微信扫一扫

jquery事件对象-48

独兜曲 2022-06-20 阅读 48

jquery事件对象-48_jquery

 jquery事件对象-48_html_02

 

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="./js/jquery.min.js"></script>
<style>
div {
width: 100px;
height: 100px;
background-color: pink;
}
</style>
</head>

<body>
<div></div>
<p>11</p>
<script>
$("document").on("click", function() {
console.log("点击了document");
})
$("div").on("click", function(event) {
console.log(event);
console.log("点击了div");
//阻止冒泡
event.stopPropagation();
})
</script>
</body>

</html>

运行结果

jquery事件对象-48_jquery_03

 


举报

相关推荐

0 条评论