HTML
CSS
JavaScript
Vue
React
Python
PHP
Java
.Net
Java9手册
PHP手册
CSS3手册
jQuery手册
源代码
在线运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟教程(cainiaoplay.com)</title> </head> <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>
动行结果