如何用JavaScript动态创建link标签到head里
展开全部
<!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>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询