使用document.write方式输出引入css的link标签
在html文件顶部<head></head>之间添加
<script>
document.write('<link rel="stylesheet" href="main.css">');
</script>
分析:
直接使用document.write引入html代码
使用createElement方法动态创建link标签,来引入css
在html文件中间<body></body>之间添加
<script>
new_element = document.createElement('link');
new_element.setAttribute('rel', 'stylesheet');
new_element.setAttribute('href', 'main.css');
document.body.appendChild(new_element);
</script>
分析:
利用document.createElement(‘link’)生成了一个link标签;然后设置其rel属性为stylesheet,href为main.css;最后将这个标签动态地加入body中。
© 版权声明
网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。
分享是一种美德,当你分享时请你附带上本文链接。
分享是一种美德,当你分享时请你附带上本文链接。
THE END
请登录后查看评论内容