1. 怎么使用js改变文字样式,例如:<style>#text{color:black}</style> <div id=“text”
varvColor=document.getElementById("text").style.color;
if(vCOlor=="black")
{
document.getElementById("text").style.color="red";
document.getElementById("text").style.textDecoration=underline;
}else
{
document.getElementById("text").style.color="blue";
}
2. 我想把文本用JS 实现颜色无限循环 要怎么写
<pid="pid">文字的颜色复</p>
<scripttype="text/javascript">
varcolors=['green','red','black','#666','yellow'];//颜色数组,制可以随意增减
i=0;
setInterval(function(){//setInterval是每间隔一段时间执行一次的函数,下面设置的1000毫秒
varp=document.getElementById('pid');
p.style.color=colors[i];
i++;//跳到下一个数组的值
i==5?i=0:i=i;//如果到数组末尾了又跳到第一个;
},1000);
</script>
3. 如何用js改变字体的颜色
用抄js方法来实现,代码为:document.getElementById("t").style.color="red";
说明袭:上面的"t"可以根据自己需要修改,具体代码参考:
<html>
<body>
<a name="t" class="STYLE2" id="t" onclick="chcolor();">登陆通行证</a>
<script type="text/javascript">
function chcolor(){
document.getElementById("t").style.color="red";
}
</script>
</body></html>
4. javascript超链接 鼠标移动到字体上字体变颜色
a:hover
{
color:blue
}
刚才朋友的打法要注意在ie6下超链接里面的href为空或者不写的话是没有效果的,这是一个bug,解决的话就得用js了,
$('a').hover(function(){
$(this).css(''color','blue');
},function(){
$(this).css(''color','black');});
希望采纳