js怎样动态调用外部CSS?

<scriptlanguage="javascript">//定义外部连接CSS的网址,数组varindexstyle=newArray(2);indexstyle[0]... <script language="javascript">
//定义外部连接CSS的网址,数组
var indexstyle=new Array(2);
indexstyle[0]="<link rel='stylesheet' type='text/css' href='index0.css'>";
indexstyle[1]="<link rel='stylesheet' type='text/css' href='index1.css'>";
indexstyle[2]="<link rel='stylesheet' type='text/css' href='index2.css'>";
document.write(indexstyle[0]);
function color0() {
document.write(indexstyle[0]);
}
function color1() {
document.write(indexstyle[1]);
}
function color2() {
document.write(indexstyle[2]);
}
</script>

<a href="javascript:void(0)" onClick="color0()"><span style="color:green">█</span></a>
<a href="javascript:void(0)" onClick="color1()"><span style="color:blue">█</span></a>
<a href="javascript:void(0)" onClick="color2()"><span style="color:skyblue"span>█</a>

运行结果确是在新网页中只输出了<link rel='stylesheet' type='text/css' href='index0.css'> ,并不能动态调用。
请高手看看这段代码错在哪里?
展开
 我来答
百度网友2f25bec
2008-04-22 · TA获得超过588个赞
知道小有建树答主
回答量:977
采纳率:0%
帮助的人:857万
展开全部
<style>
body{ color:#FF0000}
a:hover{ background:#00ccFF}
</style>
<script language="javascript">
var indexcss=new Array()
indexcss[0]='index0.css'
indexcss[1]='index1.css'
indexcss[2]='index2.css'
function loadjscssfile(filename, filetype){
if (filetype=="css"){ //判断文件类型
var fileref=document.createElement("link")
fileref.setAttribute("rel", "stylesheet")
fileref.setAttribute("type", "text/css")
fileref.setAttribute("href", filename)
}
if (typeof fileref!="undefined")
document.getElementsByTagName("head")[0].appendChild(fileref)
}
document.getElementsByTagName("head")[0].appendChild(fileref)
</script>

<a href="#" onClick="loadjscssfile(indexcss[0],'css')">1111css</a>
<a href="#" onClick="loadjscssfile(indexcss[1],'css')">2222css</a>
<a href="#" onClick="loadjscssfile(indexcss[2],'css')">3333css</a>
独风吹jU
2008-04-22 · TA获得超过945个赞
知道小有建树答主
回答量:324
采纳率:0%
帮助的人:292万
展开全部
js调用外部css用这样的语句:
var head = document.getElementsByTagName('HEAD').item(0);
var style = document.createElement('link');
style.href = 'index0.css';
style.rel = 'stylesheet';
style.type = 'text/css';
head.appendChild(style);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式