Files
ClassContent/历届学生/front-end-team/项目练习/上课项目/聊天室/fontend/demo.html
2024-09-27 02:06:13 +08:00

25 lines
414 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div class="main">
<button>点我</button>
</div>
</body>
<script>
document.querySelector(".main").onclick = function () {
alert("main")
}
document.querySelector("button").onclick = function (event) {
event.stopPropagation();
alert("button")
}
</script>
</html>