<!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>
#nav{
width: 200px;
height: 170px;
border: solid 1px #ccc;
}
#nav>.title{
border-bottom: solid 1px #ccc;
text-align: center;
padding: 5px 0;
background-color: yellow;
/* 手型 */
cursor:pointer;
/* 移动 */
/* cursor: move; */
}
#nav>.content{
padding: 5px;
}
</style>
</head>
<body>
<div id="nav">
<div onclick="aa()" class="title">
程序猿是一个工作
</div>
<div class="content">
每天都可以写代码,从事开发的工作
每天都可以写代码,从事开发的工作
每天都可以写代码,从事开发的工作
每天都可以写代码,从事开发的工作
</div>
</div>
</body>
</html>
<script>
function aa(){

var title = document.getElementsByClassName('title')[0];
var content = document.getElementsByClassName('content')[0];
// content.style.display = !content.style.display
// alert(content.style.display)

if(content.style.display == ''){
content.style.display = "none";
}else{
content.style.display = '';
}


}
</script>