24 lines
361 B
HTML
24 lines
361 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="test" onclick="test()">
|
|
<button onclick="hahahah(event)">点我</button>
|
|
</div>
|
|
</body>
|
|
|
|
<script>
|
|
function test() {
|
|
console.log("test")
|
|
}
|
|
|
|
function hahahah(e) {
|
|
e.stopPropagation()
|
|
console.log("hhahaha")
|
|
}
|
|
</script>
|
|
</html> |