代码之家  ›  专栏  ›  技术社区  ›  Anil Namde

使用JS和CSS更改页面样式?

  •  0
  • Anil Namde  · 技术社区  · 14 年前

    我正在尝试使用JS在head标签中分配CSS,它不适用于IE,知道为什么吗?即只显示“未知运行时错误”。

    <html>
    <head>
    <style id="style_id" type="text/css">
    </style>
    </head>
    <body>
    <p>This is the test Text</p>
    </body>
    <script>
        var st = document.getElementById("style_id");
        st.innerHTML = "p { color:red}";
    </script>
    </html>
    
    1 回复  |  直到 14 年前
        1
  •  0
  •   Community davidgyoung    7 年前

    你在找吗 this 一个?