添加新link就用楼上的head.appendChild()。
<!doctype html><html>
<head>
<title>creat a link</title>
<script type="text/javascript">
onload = function(){
var link = document.createElement('link')
link.setAttribute('type','text/css')
link.setAttribute('rel','stylesheet')
link.setAttribute('href','https://cdn.bootcss.com/bootstrap/3.3.6/css/bootstrap.min.css')
document.head.appendChild(link)
}
</script>
</head>
<body>
<p class="text-primary">这是一段话,样式是动态创建的引用bootstrap的样式</p>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)