25 lines
414 B
HTML
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> |