存档

文章标签 ‘js’

css、js实现列表隔行不同背景颜色的方法

2010年2月22日 没有评论

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>不用js实现带序号的表格隔行换色的效果</title>
<style>
.test{ border:1px solid #000; color:#333; font:12px; width:250px; }
.test ol li{ padding-left:5px; background-color:expression(this.sourceIndex%2? ‘#e4e4e4′:’#FFF’); }
</style>
</head>
<body>

阅读全文…