用JS的方法使用列表LI制作的隔行换色 用JS的方法使用列表LI制作的隔行换色

用JS的方法使用列表LI制作的隔行换色

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style>
body{
font-size:12px;
line-height:21px;
color:#3E352F;
}
ul{
width:200px;
list-style:none;
}
.one{
background:#CDC194;
}
.two{
background:#DDDABF;
}
</style>
<script>
function set(){
var obj=document.getElementsByTagName("li");
var num=obj.length
for(var i=0;i<num;i++){
if(i%2==0){
obj[i].className="one";
}else{
obj[i].className="two";
}
}
}
</script>
</head>
<body onload="set()">
<ul> 
<li>1.假字以数十字为基础假字数…</li> 
<li>2.假字以数十字为基础假字数…</li> 
<li>3.假字以数十字为基础假字数…</li> 
<li>4.假字以数十字为基础假字数…</li> 
<li>5.假字以数十字为基础假字数…</li> 
</ul>

</body>
</html>

评论 0

挤眼 亲亲 咆哮 开心 想想 可怜 糗大了 委屈 哈哈 小声点 右哼哼 左哼哼 疑问 坏笑 赚钱啦 悲伤 耍酷 勾引 厉害 握手 耶 嘻嘻 害羞 鼓掌 馋嘴 抓狂 抱抱 围观 威武 给力
提交评论

清空信息
关闭评论