输出表格颜色的问题
拿这个论坛来说吧,比如说我发表了一个问题,我是搂主,我的表格的颜色是白色的,到2楼时颜色就变成绿色了。也就是说1、3、5、7、9等奇数的楼层是白色的,而2、4、6、8偶数的楼层是绿色的。这个论坛就是一个很好的例子。能说说大概的编程思路吗?
<%
dim i
%>
<table border=1>
<%
for i=1 to 10
if (i mod 2)=0 then
%>
<tr>
<td bgcolor='#ffffff'><%=i%></td>
</tr>
<%
else
%>
<tr>
<td bgcolor='#00ff00'><%=i%></td>
</tr>
<%
end if
next i
%>
</table>
2楼的方法虽然可以实现,但是还要手动更改i的值,对于ASP的重复区域就很难控制了,有种更好的方法:
<%
tcolor="#ffffff"
function changecolor()
if tcolor="#ececec" then
tcolor="#ffffff"
else
tcolor="#ececec"
end if
response.Write(tcolor)
end function
%>
在重复区域中的行标签中直接调用就可以了
<tr bgcolor="<% changecolor() %>"></tr>
我 也补充一点:表格边框的色彩设置:<table bordercolor=#>
表格边框色彩亮度设置:<table bordercolorlight=#>
<html>
<head>
<title><title>
</head>
<table border=2 bgcolor=aqua>
<tr>
<th bgcolor=ffaa00>1</th> <th bgcolor=Red>2</th> <th rowspan=2>3</th>
<tr bgcolor=yellow>
<td>A</td><td>B</td>
</table>
</body>
</html>