<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.example{width: 300px;height: 200px;border: 1px solid #ccc;background: lightcoral;color:#fff;text-align: center;line-height: 200px; }
#hello{background: chartreuse;width: 300px;height: 200px;}
</style>
</head>
<body>
<div id="hello" onclick="two(this)"></div>
<div></div>
<div></div>
<button onclick="myFunction()">点击</button>
<script>
function myFunction() {
var x = document.getElementsByClassName("example");
x[0].innerHTML = "花开花落花无悔!";
x[1].innerHTML = "缘来缘去缘如水!";
}
function two(y){
var li =document.getElementById("hello");
li.style="background:red;width:500px;height:500px;border-radius: 50%;";
}
</script>
</body>
</html>