Quantcast
Channel: iT邦幫忙
Viewing all articles
Browse latest Browse all 15645

初學jsp+heml 日曆測試

$
0
0
環境:eclipse 4.2 + Java EE + tomcat 7 + IE8 + JSP + HTML
程式如下,請問如何改變週六,週日的底色?
謝謝!
<%@ page language="java" contentType="text/html; charset=BIG5"
	pageEncoding="BIG5"%><html><head><title>TomCat2</title></head><body><p align="center">月曆</p><br><table border=1 width=630><tr><th>Sun</th><th>Mon</th><th>Tue</th><th>Wed</th><th>Thu</th><th>Fri</th><th>Sat</th></tr><%
int x=1,y;
while(x<=31)
{
	out.print("<tr>");
	for(y=1;y<=7;y++)
	{ 
		out.print("<td align=center>");
		out.print(x+"</td>");
		x++;
		if(x>31)
			break;
	}
	out.print("</tr>");
} 
%></table></body></html>

Viewing all articles
Browse latest Browse all 15645

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>