源码网,源码论坛,源码之家,商业源码,游戏源码下载,discuz插件,棋牌源码下载,精品源码论坛

 找回密码
 立即注册
查看: 14215|回复: 1971

[JSP编程] 一个用JSP做的日历

[复制链接]

7万

主题

861

回帖

32万

积分

论坛元老

Rank: 8Rank: 8

积分
329525
发表于 2006-10-13 00:00:00 | 显示全部楼层 |阅读模式
<!-- File name:calendar.jsp -->


<!-- 显示任意年、月的日历,可选择不同的年、月。author:wildfield -->

<%@ page language="java" import="java.util.*" %>

<%! String year;

String month;

%>

<% month=request.getParameter("month");

year =request.getParameter("year");

%>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<title>日</title>

<script Language="JavaScript">

<!--

function changeMonth()

{

var mm="calendar.jsp?month="+document.sm.elements[0].selectedIndex+"&year="

+<%=year%>;

window.open(mm,"_self");

}

//--></script>

</head>

<%! String days[]; %>

<%

days=new String[42];

for(int i=0;i<42;i++)

{

days="";

}

%>

<%

Calendar thisMonth=Calendar.getInstance();

if(month!=null&&(!month.equals("null")))

thisMonth.set(Calendar.MONTH, Integer.parseInt(month) );

if(year!=null&&(!year.equals("null")))

thisMonth.set(Calendar.YEAR, Integer.parseInt(year) );

year=String.valueOf(thisMonth.get(Calendar.YEAR));

month=String.valueOf(thisMonth.get(Calendar.MONTH));

thisMonth.setFirstDayOfWeek(Calendar.SUNDAY);

thisMonth.set(Calendar.DAY_OF_MONTH,1);

int firstIndex=thisMonth.get(Calendar.DAY_OF_WEEK)-1;

int maxIndex=thisMonth.getActualMaximum(Calendar.DAY_OF_MONTH);

for(int i=0;i<maxIndex;i++)

{

days[firstIndex+i]=String.valueOf(i+1);

}

%>

<body>

<FORM name="sm" method="post" action="calendar.jsp">

   <%=year%>年  <%=Integer.parseInt(month)+1%>月

<table border="0" width="168" height="81">

<div align=center>

<tr>

<th width="25" height="16" bgcolor="#FFFF00"><font color="red">日</font>

</th>

<th width="25" height="16" bgcolor="#FFFF00">一</th>

<th width="25" height="16" bgcolor="#FFFF00">二</th>

<th width="25" height="16" bgcolor="#FFFF00">三</th>

<th width="25" height="16" bgcolor="#FFFF00">四</th>

<th width="25" height="16" bgcolor="#FFFF00">五</th>

<th width="25" height="16" bgcolor="#FFFF00"><font color="green">六</fon

t></th>

</tr>

<% for(int j=0;j<6;j++) { %>

<tr>

<% for(int i=j*7;i<(j+1)*7;i++) { %>

<td width="15%" height="16" bgcolor="#C0C0C0" valign="middle" align="ce

nter">

<a href="jump.jsp?year=<%=year%>&month=<%=Integer.parseInt(month)+1%>&d

ate=<%=days[i]%>" target="main"><%=days[i]%></a></td>

<% } %>

</tr>

<% } %>

</div>

</table>

<table border="0" width="168" height="20">

<tr>

<td width=30%><select name="month" size="1" onchange="changeMonth()" >

<option value="0">一月</option>

<option value="1">二月</option>

<option value="2">三月</option>

<option value="3">四月</option>

<option value="4">五月</option>

<option value="5">六月</option>

<option value="6">七月</option>

<option value="7">八月</option>

<option value="8">九月</option>

<option value="9">十月</option>

<option value="10">十一月</option>

<option value="11">十二月</option>

</select></td>

<td width=28%><input type=text name="year" value=<%=year%> size=4 maxlength

=4></td>

<td>年</td>

<td width=28%><input type=submit value="提交"></td>

</tr>

</table>

</FORM>

<script Language="JavaScript">

<!--

document.sm.month.options.selectedIndex=<%=month%>;


//-->

</script>

</body>

</html> 
回复

使用道具 举报

0

主题

1万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2022-8-23 06:19:29 | 显示全部楼层
看看看看
回复 支持 反对

使用道具 举报

匿名  发表于 2022-8-23 07:48:38

how to write and essay y51ikt


Regards, Plenty of advice!
humana online pharmacy buy online prescription drugs canadian pharcharmy https://canadianpharmaceuticalsonlineus.com/
回复 支持 反对

使用道具

1

主题

1万

回帖

207

积分

中级会员

Rank: 3Rank: 3

积分
207
发表于 2022-9-4 10:08:43 | 显示全部楼层
加快速度很快就撒谎
回复 支持 反对

使用道具 举报

9

主题

1万

回帖

420

积分

中级会员

Rank: 3Rank: 3

积分
420
发表于 2022-9-9 07:53:45 | 显示全部楼层
非常vbcbvcvbvcb
回复 支持 反对

使用道具 举报

匿名  发表于 2022-9-14 17:03:04
回复 支持 反对

使用道具

匿名  发表于 2022-9-27 15:54:02
回复 支持 反对

使用道具

3

主题

1万

回帖

50

积分

注册会员

Rank: 2

积分
50
发表于 2022-10-16 16:46:43 | 显示全部楼层
快更新啊,我擦
回复 支持 反对

使用道具 举报

匿名  发表于 2022-10-24 11:55:59
回复 支持 反对

使用道具

匿名  发表于 2022-10-28 21:18:35
回复 支持 反对

使用道具

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

手机版|小黑屋|网站地图|源码论坛 ( 海外版 )

GMT+8, 2024-9-20 14:52 , Processed in 0.152996 second(s), 26 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表