51 lines
1.1 KiB
HTML
51 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
.main button {
|
|
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p onclick="test()">点我</p>
|
|
<div class="main">
|
|
<button>点我</button>
|
|
</div>
|
|
|
|
<div class="text"></div>
|
|
</body>
|
|
|
|
<script>
|
|
// 事件源
|
|
// 事件类型
|
|
// 事件处理函数
|
|
function test() {
|
|
alert("11111")
|
|
}
|
|
|
|
// document.querySelector(".main button").onclick = function () {
|
|
// alert("1111")
|
|
// }
|
|
|
|
// document.querySelector(".main button").onclick = function () {
|
|
// alert("2222")
|
|
// }
|
|
|
|
document.querySelector(".main button").addEventListener('click', function() {
|
|
alert("1111")
|
|
})
|
|
|
|
// document.querySelector(".main button").addEventListener('click', function() {
|
|
// alert("2222")
|
|
// })
|
|
|
|
// document.querySelector(".main button").addEventListener('click', function() {
|
|
// alert("3333")
|
|
// })
|
|
|
|
</script>
|
|
</html> |