运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <h1 style="color:red; font-size: 50px">The cssText Property</h1> <p>Click the button to set the value of the inline style of the H1 element.</p> <button onclick="myFunction()">Try it</button> <p><strong>Note:</strong> The value of the inline style is completely overwritten (In this example the font-size is no longer 50px).</p> <script> function myFunction() { var elmnt = document.getElementsByTagName("h1")[0]; elmnt.style.cssText = "color: blue;"; } </script> </body> </html>