浏览主站 | 站长工具 | 新闻资讯 | 站长学院 | 站长盈利 | HTML教程 | 网址导航 | 站长周刊 | 会员投稿 | 滚动新闻 | RSS
发新话题
打印

[Web开发] 表格隔行变色+各行虚线

表格隔行变色+各行虚线

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style>
td{border-bottom:1 dashed white;}
.t1 {background-color:#336699;text-align:center}
.t2 {background-color:#ffcc00;text-align:center}
</style>
<script Language="Javascript1.2">
<!-- POPOEVER is drinking half bottle of lemon tea:) --
function paintTable() {
for (i=1;i<table1.rows.length+1;i++) {
(i%2>0)?(table1.rows(i-1).className = "t1"):(table1.rows(i-1).className = "t2");
}
}
//-- Lemon tea is bottom up -->
</script>

TOP

发新话题