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

📄 calendarpopup.js

📁 网页打卡钟系统,源码提供给大家学习一下啦!希望给大家带来帮助
💻 JS
📖 第 1 页 / 共 4 页
字号:
		while ((format.charAt(i_format)==c) && (i_format < format.length)) {			token += format.charAt(i_format++);			}		// Extract contents of value based on format token		if (token=="yyyy" || token=="yy" || token=="y") {			if (token=="yyyy") { x=4;y=4; }			if (token=="yy")   { x=2;y=2; }			if (token=="y")    { x=2;y=4; }			year=_getInt(val,i_val,x,y);			if (year==null) { return 0; }			i_val += year.length;			if (year.length==2) {				if (year > 70) { year=1900+(year-0); }				else { year=2000+(year-0); }				}			}		else if (token=="MMM"||token=="NNN"){			month=0;			for (var i=0; i<MONTH_NAMES.length; i++) {				var month_name=MONTH_NAMES[i];				if (val.substring(i_val,i_val+month_name.length).toLowerCase()==month_name.toLowerCase()) {					if (token=="MMM"||(token=="NNN"&&i>11)) {						month=i+1;						if (month>12) { month -= 12; }						i_val += month_name.length;						break;						}					}				}			if ((month < 1)||(month>12)){return 0;}			}		else if (token=="EE"||token=="E"){			for (var i=0; i<DAY_NAMES.length; i++) {				var day_name=DAY_NAMES[i];				if (val.substring(i_val,i_val+day_name.length).toLowerCase()==day_name.toLowerCase()) {					i_val += day_name.length;					break;					}				}			}		else if (token=="MM"||token=="M") {			month=_getInt(val,i_val,token.length,2);			if(month==null||(month<1)||(month>12)){return 0;}			i_val+=month.length;}		else if (token=="dd"||token=="d") {			date=_getInt(val,i_val,token.length,2);			if(date==null||(date<1)||(date>31)){return 0;}			i_val+=date.length;}		else if (token=="hh"||token=="h") {			hh=_getInt(val,i_val,token.length,2);			if(hh==null||(hh<1)||(hh>12)){return 0;}			i_val+=hh.length;}		else if (token=="HH"||token=="H") {			hh=_getInt(val,i_val,token.length,2);			if(hh==null||(hh<0)||(hh>23)){return 0;}			i_val+=hh.length;}		else if (token=="KK"||token=="K") {			hh=_getInt(val,i_val,token.length,2);			if(hh==null||(hh<0)||(hh>11)){return 0;}			i_val+=hh.length;}		else if (token=="kk"||token=="k") {			hh=_getInt(val,i_val,token.length,2);			if(hh==null||(hh<1)||(hh>24)){return 0;}			i_val+=hh.length;hh--;}		else if (token=="mm"||token=="m") {			mm=_getInt(val,i_val,token.length,2);			if(mm==null||(mm<0)||(mm>59)){return 0;}			i_val+=mm.length;}		else if (token=="ss"||token=="s") {			ss=_getInt(val,i_val,token.length,2);			if(ss==null||(ss<0)||(ss>59)){return 0;}			i_val+=ss.length;}		else if (token=="a") {			if (val.substring(i_val,i_val+2).toLowerCase()=="am") {ampm="AM";}			else if (val.substring(i_val,i_val+2).toLowerCase()=="pm") {ampm="PM";}			else {return 0;}			i_val+=2;}		else {			if (val.substring(i_val,i_val+token.length)!=token) {return 0;}			else {i_val+=token.length;}			}		}	// If there are any trailing characters left in the value, it doesn't match	if (i_val != val.length) { return 0; }	// Is date valid for month?	if (month==2) {		// Check for leap year		if ( ( (year%4==0)&&(year%100 != 0) ) || (year%400==0) ) { // leap year			if (date > 29){ return 0; }			}		else { if (date > 28) { return 0; } }		}	if ((month==4)||(month==6)||(month==9)||(month==11)) {		if (date > 30) { return 0; }		}	// Correct hours value	if (hh<12 && ampm=="PM") { hh=hh-0+12; }	else if (hh>11 && ampm=="AM") { hh-=12; }	var newdate=new Date(year,month-1,date,hh,mm,ss);	return newdate.getTime();	}// ------------------------------------------------------------------// parseDate( date_string [, prefer_euro_format] )//// This function takes a date string and tries to match it to a// number of possible date formats to get the value. It will try to// match against the following international formats, in this order:// y-M-d   MMM d, y   MMM d,y   y-MMM-d   d-MMM-y  MMM d// M/d/y   M-d-y      M.d.y     MMM-d     M/d      M-d// d/M/y   d-M-y      d.M.y     d-MMM     d/M      d-M// A second argument may be passed to instruct the method to search// for formats like d/M/y (european format) before M/d/y (American).// Returns a Date object or null if no patterns match.// ------------------------------------------------------------------function parseDate(val) {	var preferEuro=(arguments.length==2)?arguments[1]:false;	generalFormats=new Array('y-M-d','MMM d, y','MMM d,y','y-MMM-d','d-MMM-y','MMM d');	monthFirst=new Array('M/d/y','M-d-y','M.d.y','MMM-d','M/d','M-d');	dateFirst =new Array('d/M/y','d-M-y','d.M.y','d-MMM','d/M','d-M');	var checkList=new Array('generalFormats',preferEuro?'dateFirst':'monthFirst',preferEuro?'monthFirst':'dateFirst');	var d=null;	for (var i=0; i<checkList.length; i++) {		var l=window[checkList[i]];		for (var j=0; j<l.length; j++) {			d=getDateFromFormat(val,l[j]);			if (d!=0) { return new Date(d); }			}		}	return null;	}/* SOURCE FILE: PopupWindow.js *//* PopupWindow.jsAuthor: Matt KruseLast modified: 02/16/04DESCRIPTION: This object allows you to easily and quickly popup a windowin a certain place. The window can either be a DIV or a separate browserwindow.COMPATABILITY: Works with Netscape 4.x, 6.x, IE 5.x on Windows. Some smallpositioning errors - usually with Window positioning - occur on the Macintosh platform. Due to bugs in Netscape 4.x, populating the popup window with <STYLE> tags may cause errors.USAGE:// Create an object for a WINDOW popupvar win = new PopupWindow(); // Create an object for a DIV window using the DIV named 'mydiv'var win = new PopupWindow('mydiv'); // Set the window to automatically hide itself when the user clicks // anywhere else on the page except the popupwin.autoHide(); // Show the window relative to the anchor name passed inwin.showPopup(anchorname);// Hide the popupwin.hidePopup();// Set the size of the popup window (only applies to WINDOW popupswin.setSize(width,height);// Populate the contents of the popup window that will be shown. If you // change the contents while it is displayed, you will need to refresh()win.populate(string);// set the URL of the window, rather than populating its contents// manuallywin.setUrl("http://www.site.com/");// Refresh the contents of the popupwin.refresh();// Specify how many pixels to the right of the anchor the popup will appearwin.offsetX = 50;// Specify how many pixels below the anchor the popup will appearwin.offsetY = 100;NOTES:1) Requires the functions in AnchorPosition.js2) Your anchor tag MUST contain both NAME and ID attributes which are the    same. For example:   <A NAME="test" ID="test"> </A>3) There must be at least a space between <A> </A> for IE5.5 to see the    anchor tag correctly. Do not do <A></A> with no space.4) When a PopupWindow object is created, a handler for 'onmouseup' is   attached to any event handler you may have already defined. Do NOT define   an event handler for 'onmouseup' after you define a PopupWindow object or   the autoHide() will not work correctly.*/ // Set the position of the popup window based on the anchorfunction PopupWindow_getXYPosition(anchorname) {	var coordinates;	if (this.type == "WINDOW") {		coordinates = getAnchorWindowPosition(anchorname);		}	else {		coordinates = getAnchorPosition(anchorname);		}	this.x = coordinates.x;	this.y = coordinates.y;	}// Set width/height of DIV/popup windowfunction PopupWindow_setSize(width,height) {	this.width = width;	this.height = height;	}// Fill the window with contentsfunction PopupWindow_populate(contents) {	this.contents = contents;	this.populated = false;	}// Set the URL to go tofunction PopupWindow_setUrl(url) {	this.url = url;	}// Set the window popup propertiesfunction PopupWindow_setWindowProperties(props) {	this.windowProperties = props;	}// Refresh the displayed contents of the popupfunction PopupWindow_refresh() {	if (this.divName != null) {		// refresh the DIV object		if (this.use_gebi) {			document.getElementById(this.divName).innerHTML = this.contents;			}		else if (this.use_css) { 			document.all[this.divName].innerHTML = this.contents;			}		else if (this.use_layers) { 			var d = document.layers[this.divName]; 			d.document.open();			d.document.writeln(this.contents);			d.document.close();			}		}	else {		if (this.popupWindow != null && !this.popupWindow.closed) {			if (this.url!="") {				this.popupWindow.location.href=this.url;				}			else {				this.popupWindow.document.open();				this.popupWindow.document.writeln(this.contents);				this.popupWindow.document.close();			}			this.popupWindow.focus();			}		}	}// Position and show the popup, relative to an anchor objectfunction PopupWindow_showPopup(anchorname) {	this.getXYPosition(anchorname);	this.x += this.offsetX;	this.y += this.offsetY;	if (!this.populated && (this.contents != "")) {		this.populated = true;		this.refresh();		}	if (this.divName != null) {		// Show the DIV object		if (this.use_gebi) {			document.getElementById(this.divName).style.left = this.x + "px";			document.getElementById(this.divName).style.top = this.y + "px";			document.getElementById(this.divName).style.visibility = "visible";			}		else if (this.use_css) {			document.all[this.divName].style.left = this.x;			document.all[this.divName].style.top = this.y;			document.all[this.divName].style.visibility = "visible";			}		else if (this.use_layers) {			document.layers[this.divName].left = this.x;			document.layers[this.divName].top = this.y;			document.layers[this.divName].visibility = "visible";			}		}	else {		if (this.popupWindow == null || this.popupWindow.closed) {			// If the popup window will go off-screen, move it so it doesn't			if (this.x<0) { this.x=0; }			if (this.y<0) { this.y=0; }			if (screen && screen.availHeight) {				if ((this.y + this.height) > screen.availHeight) {					this.y = screen.availHeight - this.height;					}				}			if (screen && screen.availWidth) {				if ((this.x + this.width) > screen.availWidth) {					this.x = screen.availWidth - this.width;					}				}			var avoidAboutBlank = window.opera || ( document.layers && !navigator.mimeTypes['*'] ) || navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled );			this.popupWindow = window.open(avoidAboutBlank?"":"about:blank","window_"+anchorname,this.windowProperties+",width="+this.width+",height="+this.height+",screenX="+this.x+",left="+this.x+",screenY="+this.y+",top="+this.y+"");			}		this.refresh();		}	}// Hide the popupfunction PopupWindow_hidePopup() {	if (this.divName != null) {		if (this.use_gebi) {			document.getElementById(this.divName).style.visibility = "hidden";			}		else if (this.use_css) {			document.all[this.divName].style.visibility = "hidden";			}		else if (this.use_layers) {			document.layers[this.divName].visibility = "hidden";			}		}	else {		if (this.popupWindow && !this.popupWindow.closed) {			this.popupWindow.close();			this.popupWindow = null;			}		}	}// Pass an event and return whether or not it was the popup DIV that was clickedfunction PopupWindow_isClicked(e) {	if (this.divName != null) {		if (this.use_layers) {			var clickX = e.pageX;			var clickY = e.pageY;			var t = document.layers[this.divName];			if ((clickX > t.left) && (clickX < t.left+t.clip.width) && (clickY > t.top) && (clickY < t.top+t.clip.height)) {				return true;				}			else { return false; }			}		else if (document.all) { // Need to hard-code this to trap IE for error-handling			var t = window.event.srcElement;			while (t.parentElement != null) {				if (t.id==this.divName) {					return true;					}				t = t.parentElement;				}			return false;			}		else if (this.use_gebi && e) {			var t = e.originalTarget;			while (t.parentNode != null) {				if (t.id==this.divName) {					return true;					}				t = t.parentNode;				}			return false;			}		return false;		}	return false;	}// Check an onMouseDown event to see if we should hidefunction PopupWindow_hideIfNotClicked(e) {	if (this.autoHideEnabled && !this.isClicked(e)) {		this.hidePopup();		}	}// Call this to make the DIV disable automatically when mouse is clicked outside itfunction PopupWindow_autoHide() {	this.autoHideEnabled = true;

⌨️ 快捷键说明

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