<html>
<body>
<h3>如何访问 S 元素的演示</h3>
<p><s id="myS">My car is blue.</s></p>
<p>My new car is silver.</p>
<p>单击按钮将不再正确的文本颜色设置为红色。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myS");
x.style.color = "red";
}
</script>
</body>
</html>