事件后面一般对应的就是一个函数
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#app{
width: 100px;
height:100px;
border: 1px solid black;
}
</style>
</head>
<body>
<div id="app">
</div>
<script>
var app = document.getElementById("app")
/* 事件后面一般对应的就是一个函数 */
app.onclick = function(){
app.style.backgroundColor = "red"
}
</script>
</body>
</html>
点击后 背景色变为红色