x
 
<!DOCTYPE html>
<html>
<body>
<h1 style="color:red; font-size: 50px">cssText 属性</h1>
<p>点击按钮可设置 H1 元素的行内样式值。</p>
<button onclick="myFunction()">试一试</button>
<p><strong>注释:</strong>行内样式的值被完全覆盖(在此例中,字体大小不再是 50px)。</p>
<script>
function myFunction() {
  var elmnt = document.getElementsByTagName("h1")[0];
  elmnt.style.cssText = "color: blue;";
}
</script>
</body>
</html>