<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Javascript控制div的样式</title>
<style>
#box{
width:100px;
height:100px;
background-color:lightblue;
}
</style>
</head>
<body>
<div id="box"></div>
<script>
document.getElementById('box').onclick = function() {
this.style.backgroundColor = 'orange';
this.style.borderRadius = '50%';
}
</script>
</body>
</html>