2 回答
TA贡献1840条经验 获得超5个赞
首先:我们要纠正一个错误,相同id属性,一个页面最好只有一个。在你提供的代码中,出现了3个flashit是不正确的。相同的class属性是可以出现多个的。
其次:在for循环中,使用setInterval函数时,里面的变量 i 不能放在双引号中,那样它会被识别为字符串的,需要用“+”连接符对变量进行连接。请参考下面的示例。
根据你的代码,我做了适当修改。
示例效果为,红蓝颜色替换,你可以根据实际需求做一些适当变更。代码如下:
HTML代码:
12345678 | < form id = "form1" > < textarea cols = "20" rows = "8" name = "flashit1" class = "flashit" class = "flashit" style = "color:blue" >闪烁的文字用来强调一些重要的文字 </ textarea > < input type = "text" value = "文本框也可以" name = "flashit" class = "flashit" style = "color:blue" > < input type = "submit" name = "flashit1" class = "flashit" style = "color:blue" > </ form > |
JavaScript代码:
123456789101112 | 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" ; } } |
运行结果:
TA贡献1851条经验 获得超5个赞
代码如下:
<!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>
望~~!
- 2 回答
- 0 关注
- 384 浏览
添加回答
举报