x
 
<!DOCTYPE html>
<html>
<body>
<h1>Element 对象</h1>
<h2>id 属性</h2>
<button onclick="myFunction()">更改</button>
<p id="myP">单击“更改”可更改我的字体大小。</p>
<script>
function myFunction() {
  const element = document.getElementById("myP");
  element.style.fontSize = "24px";
}
</script>
</body>
</html>