0

好吧,我的问题很简单。假设我有一个没有链接到任何外部样式表的主页,它的所有样式都是内联或内部的,我该怎么做才能在主页被下载和显示之后,浏览器然后下载任何必要的(指定的)外部样式表。这可能吗?

谢谢你。

4

1 回答 1

0

尝试这个:

<head>
   <script type='text/javascript'>
      function addstyle()
      {
        document.getElementById('style').href='style.css';
      }
   </script>
   <link rel="stylesheet" type="text/css" href="">
</head>
<body onload="addstyle()">
   <h1>Welcome</h1>
   <p>Hello whats up</p>
   <p>Hope you will have a great day</p>
</body>
于 2014-01-14T11:27:44.333 回答