JavaScript动态添加css样式和script标签
[动态添加css样式]
<html>
<head>
<scripttype="text/javascript">
window.onload=function(){
varhead=document.getElementsByTagName('head')[0];//获取到head元素
varlink=document.createElement('link');//创建link元素节点,也就是link标签
link.rel="stylesheet";//为link标签添加rel属性
link.href="basic.css";//为link标签添加href属性,属性值是css外链样式表的路径
head.appendChild(link);//将link元素节点添加到head元素子节点下
}
</script>
</head>
<body>
<divid="div1">测试</div>
</body>
</html>
[动态添加script标签]
原理同上
<html>
<head>
<scripttype="text/javascript">
window.onload=function(){
varhead=document.getElementsByTagName('head')[0];//获取到head元素
varscript=document.createElement('script');//创建script标签
script.type="text/javascript";//为script标签添加type属性
script.src="basic.js";//为script标签添加scr属性,属性值为js路径
head.appendChild('script');//将script标签添加到head的子节点下
}
</script>
</head>
<body>
<divid="div1">测试</div>
</body>
</html>
以上所述是小编给大家介绍的JavaScript动态添加css样式和script标签,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!
热门推荐
10 八一幼儿祝福语大全简短
11 公司乔迁食堂祝福语简短
12 婚礼结束聚餐祝福语简短
13 儿媳买车妈妈祝福语简短
14 毕业送礼老师祝福语简短
15 同事辞职正常祝福语简短
16 恭贺新婚文案祝福语简短
17 金店立秋祝福语简短英文
18 婆婆高寿祝福语大全简短