改变dom的style

<html><head><title>文字闪烁</title></head><body><formid="form1"><divid="a">文本框也可以</div><t... <html>
<head>
<title>文字闪烁</title>

</head>
<body>
<form id="form1">
<div id="a">
文本框也可以
</div>
<textarea cols="20" rows="8" name="flashit1" id="flashit" style="color:blue">
闪烁的文字用来强调一些重要的文字
</textarea>
<br>
<input type="text" value="文本框也可以" name="flashit" id="flashit" style="color:blue">
<br>
<input type="submit" name="flashit1" id="flashit" style="color:blue">
</form>
<script type="text/javascript">
var flashelement=document.getElementById("form1");
for(i=0;i<flashelement.flashit.length;i++)
{
var tempvariable=setInterval("changecolor(i)",1000);
}
function changecolor(which)
{
if(flashelement.flashit[which].style.color=="")
{alert("asd");
flashelement.flashit[which].style.color="red";
}
else
{
flashelement.flashit[which].style.color="";
}
}

</script>
</body>
</html>
这个if判断里为什么上style 会报错?
展开
 我来答
张恺阳
2017-05-09 · 知道合伙人软件行家
张恺阳
知道合伙人软件行家
采纳数:166 获赞数:532
开发过各种类型网站及APP等,如有相关问题可以随时向我提问。

向TA提问 私信TA
展开全部

首先:我们要纠正一个错误,相同id属性,一个页面最好只有一个。在你提供的代码中,出现了3个flashit是不正确的。相同的class属性是可以出现多个的。

其次:在for循环中,使用setInterval函数时,里面的变量 i 不能放在双引号中,那样它会被识别为字符串的,需要用“+”连接符对变量进行连接。请参考下面的示例。

根据你的代码,我做了适当修改。

示例效果为,红蓝颜色替换,你可以根据实际需求做一些适当变更。代码如下:

HTML代码:

<form id="form1">
    <textarea cols="20" rows="8" name="flashit1" class="flashit" class="flashit" style="color:blue">闪烁的文字用来强调一些重要的文字
    </textarea>
    <br>
    <input type="text" value="文本框也可以" name="flashit" class="flashit" style="color:blue">
    <br>
    <input type="submit" name="flashit1" class="flashit" style="color:blue">
</form>

JavaScript代码:

var flashelement=document.querySelectorAll("input, textarea");

for (i = 0; i < flashelement.length; i++){
    setInterval("changecolor(" + i + ")",1000);
}
function changecolor(which){
    if(flashelement[which].style.color=="blue"){
        flashelement[which].style.color="red";
    }else{
        flashelement[which].style.color="blue";
    }
}

运行结果:

来自:求助得到的回答
kf...0@33sn.cc
2017-05-09 · 超过48用户采纳过TA的回答
知道答主
回答量:136
采纳率:0%
帮助的人:25.4万
展开全部
代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Test</title>
<script src="" type="text/javascript" charset="utf-8"></script>
<style>
*{
/*margin: 0px;
padding: 0px;*/
}
.test1{
width: 100%;
height: 22px;
line-height: 22px;
border: 2px solid #ccc;
}
</style>
</head>
<body>
<div class="test1">公告内容</div>
<br />
<button class="changestyle">更改样式</button>
<script>
$(function(){
$(".changestyle").off("click").on("click",function(){
$(".test1").css({
"font-size":"16px",
"font-weight":"bold",
"border":"2px solid blue",
"width":"200px",
"height":"100px",
"text-align":"center",
"line-height":"100px",
"color":"red"
});
});
});
</script>
</body>
</html>
望~~!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式