Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<body>
<p id="demo" onclick="myFunction()">单击我更改我的文本颜色。</p>
<p>单击 p 元素时会触发一个函数。 该函数将 p 元素的颜色设置为红色。</p>
<script>
function myFunction() {
  document.getElementById("demo").style.color = "red";
}
</script>
</body>
</html>