xxxxxxxxxx
<!DOCTYPE html>
<html>
<title>JavaScript this 关键字改变背景颜色 - 基础教程(div.cn)</title>
<body>
<h1>JavaScript this 关键字</h1>
<button onclick="this.style.display='none'">点击删除我</button>
<p onclick="this.style.backgroundColor='coral'">点击改变我的背景颜色</p>
</body>
</html>