⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 calendar2.htm

📁 1 除掉了 时间 限制 2 除掉了 人数 限制 改为 500人 原为5人 3 发现一点小缺陷 增加人员的时候没有判断 登陆名是否重复! 自己写吧~~~:) 4 又 是一点缺陷
💻 HTM
字号:
<html>
<head>
	<meta http-equiv='content-type' content='text/html; charset=gb2312'>
	<title>日历</title>
	<style>
		select	{ font-family: arial; font-size: 11; font-weight: bold; color: white; background-color: rgb(58,110,165); cursor: hand; }
		table	{ font-family: arial; font-size: 11; color: white; font-weight: bold; }
		td		{ text-align: center; vertical-align: middle; }
		.click	{ color: black; background-color: white; border: 2 inset gray; cursor: hand; }
		.focus	{ border: 2 outset white; cursor: hand; }
		.normal { cursor: hand; }
	</style>
</head>

<script language=javascript>
	var _obDate;
	var _obCell;
	
	// init window event
	window.onload	= on_load;
	window.onerror	= on_error;

	// public method
	function public_setDate( obDate ) {
		_obDate = obDate;
		drawCal();
	}
	
	// event method
	function on_error() {
		alert( arguments[0] );
	}
	
	function on_load() {
		var obBody = document.all( "tblCal" );
		for ( var i=0; i<6; i++ ) {
			var obRow = obBody.insertRow();
			for ( var j=0; j<7; j++ ) {
				var obCell = obRow.insertCell();
				obCell.id = "d" + (i*7+j);
				obCell.width = "10%";
				obCell.height = 18;
			}
		}
		var obDate = new Date();
		var iYear = obDate.getFullYear();
		for ( i=iYear-50; i<iYear+20; i++ ) {
			var obOption = document.createElement( "OPTION" );
			obOption.value = i; obOption.text = i;
			selYear.add( obOption );
		}
		_obDate = obDate;
		drawCal();
	}
	
	function on_cell_focus() {
		var obCell = event.srcElement;
		if ( obCell.className != "click" && 
			obCell.className != "focus" ) {
			obCell.className = "focus";
		}
	}
	
	function on_cell_blur() {
		var obCell = event.srcElement;
		if ( obCell.className != "click" && 
			obCell.className != "normal") {
			obCell.className = "normal";
		}
	}
	
	function on_cell_click() {
		var obCell = event.srcElement;
		if ( obCell.className != "click" ) {
			_obCell.className = "normal";
			_obCell = obCell;
			_obCell.className = "click";
		}
		
		// raise event
		var obDate = new Date( selYear.value, selMonth.value, _obCell.innerText );
		window.external.raiseEvent( "ondatechange", obDate );
	}
	
	function on_prev_month() {
		var iMonth = _obDate.getMonth();
		_obDate.setMonth( iMonth-1 );
		drawCal();
	}
	
	function on_next_month() {
		var iMonth = _obDate.getMonth();
		_obDate.setMonth( iMonth+1 );
		_obCell.className = "normal";
		drawCal();
	}
	
	function on_month_change() {
		_obDate.setMonth( selMonth.value );
		_obCell.className = "normal";
		drawCal();
	}
	
	function on_year_change() {
		_obDate.setYear( selYear.value );
		_obCell.className = "normal";
		drawCal();
	}
	
	// private method
	function drawCal() {
	    try{
		var iYear	= _obDate.getFullYear();	// xxxx
		var iMonth	= _obDate.getMonth();		// 0-11
		var iDate	= _obDate.getDate();		// 1-31

		var obDate1 = new Date( iYear, iMonth, 1 );				// 这个月的1日
		var iDate1 = Date.parse( obDate1 );
		var obDate2 = new Date( iYear, iMonth+1, 1 );				// 下个月的1日
		var iDate2 = Date.parse( obDate2 );
		
		var iDays = ( iDate2 - iDate1 ) / ( 1000 * 3600 * 24 );		// 这个月有多少天 ?
		var iDay1 = obDate1.getDay();			// 0-6				// 这个月的1日是星期几 ?

		var obCell;
		for ( var i=0; i<7*6; i++ ) {
			obCell = document.all( "d"+i );
			if ( i < iDay1 ||  i >= iDay1+iDays ) {
				obCell.innerText = " ";
			} else {
				obCell.innerText = (i-iDay1) + 1;
				obCell.className = "normal";
				obCell.onmouseover	= on_cell_focus;
				obCell.onmouseout	= on_cell_blur;
				obCell.onclick		= on_cell_click;
			}
		}
		
		// init calendar
		_obCell = document.all( "d" + (iDay1+iDate-1) );
		_obCell.className = "click";
		selYear.value = iYear;
		selMonth.value = iMonth;
	     } catch(e){};
	}
</script>

<body bgcolor=white topmargin=0 leftmargin=0>

<table id=tblCal cellpadding=0 cellspacing=0 width='100%' height='100%' bgcolor='#0066FF'>
  <tr>
		<td onclick='on_prev_month();'>&lt;&lt;</td>
		<td colspan=5>
			<select name="selMonth" size="1" class="month" onchange="on_month_change();">
				<option value=0>1 月</option>
				<option value=1>2 月</option>
				<option value=2>3 月</option>
				<option value=3>4 月</option>
				<option value=4>5 月</option>
				<option value=5>6 月</option>
				<option value=6>7 月</option>
				<option value=7>8 月</option>
				<option value=8>9 月</option>
				<option value=9>10 月</option>
				<option value=10>11 月</option>
				<option value=11>12 月</option>
			</select>
			<select name="selYear" size=1 class="year" onchange="on_year_change();"></select>
		</td>
		<td onclick='on_next_month();'>&gt;&gt;</td>
	</tr>
	<tr style='font-family: 宋体; font-size: 12; color: yellow; '>
		<td>日</td><td>一</td><td>二</td><td>三</td><td>四</td><td>五</td><td>六</td>
	</tr>
</table>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -