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

📄 calendar.js

📁 图书管理系统
💻 JS
📖 第 1 页 / 共 5 页
字号:
}
function show_calendar() {
	/* 
		p_month : 0-11 for Jan-Dec; 12 for All Months.
		p_year	: 4-digit year
		p_format: Date format (mm/dd/yyyy, dd/mm/yy, ...)
		p_item	: Return Item.
	*/
	p_item = arguments[0];
	if (arguments[1] == null) {
		p_month = new String(gNow.getMonth());
	} else {
		p_month = arguments[1];
	}
	if (arguments[2] == "" || arguments[2] == null) {
		p_year = new String(gNow.getFullYear().toString());
	} else {
		p_year = arguments[2];
	}
	if (arguments[3] == null) {
		p_format = "YYYY-MM-DD";
	} else {
		p_format = arguments[3];
	}
	Build(p_item, p_month, p_year, p_format);
}
/*
Yearly Calendar Code Starts here
*/
function show_yearly_calendar() {
	// Load the defaults..
	//if (p_year == null || p_year == "")
	//	p_year = new String(gNow.getFullYear().toString());
	//if (p_format == null || p_format == "")
	//	p_format = "YYYY-MM-DD";
	p_item = arguments[0];
	if (arguments[1] == "" || arguments[1] == null) {
		p_year = new String(gNow.getFullYear().toString());
	} else {
		p_year = arguments[1];
	}
	if (arguments[2] == null) {
		p_format = "YYYY-MM-DD";
	} else {
		p_format = arguments[2];
	}
	Build(p_item, null, p_year, p_format);
	var thisDate = new Date();
	var thisYear = parseInt(thisDate.getYear());
	init(thisYear);
}
/*显示当前年份年历
*year 显示的年份
*侯文龙

*/
function show_year_calendar(year) {
	// Load the defaults..
	//if (p_year == null || p_year == "")
	//	p_year = new String(gNow.getFullYear().toString());
	//if (p_format == null || p_format == "")
	//	p_format = "YYYY-MM-DD";
	p_item = arguments[0];	
	p_year = new String(year.toString());
   if (arguments[2] == null) {
		p_format = "YYYY-MM-DD";
	} else {
		p_format = arguments[2];
	}
	Build(p_item, null, p_year, p_format);
	var thisYear = parseInt(year);
	init(thisYear);
}
////////////////////////////////////////////////////////////////////////////////////
//  overLIB 3.50  --  This notice must remain untouched at all times.
//  Copyright Erik Bosrup 1998-2001. All rights reserved.
//  THIS IS A VERY MODIFIED VERSION. DO NOT EDIT OR PUBLISH. GET THE ORIGINAL!
var INARRAY = 1;
var CAPARRAY = 2;
var STICKY = 3;
var BACKGROUND = 4;
var NOCLOSE = 5;
var CAPTION = 6;
var LEFT = 7;
var RIGHT = 8;
var CENTER = 9;
var OFFSETX = 10;
var OFFSETY = 11;
var FGCOLOR = 12;
var BGCOLOR = 13;
var TEXTCOLOR = 14;
var CAPCOLOR = 15;
var CLOSECOLOR = 16;
var WIDTH = 17;
var BORDER = 18;
var STATUS = 19;
var AUTOSTATUS = 20;
var AUTOSTATUSCAP = 21;
var HEIGHT = 22;
var CLOSETEXT = 23;
var SNAPX = 24;
var SNAPY = 25;
var FIXX = 26;
var FIXY = 27;
var FGBACKGROUND = 28;
var BGBACKGROUND = 29;
var PADX = 30;// PADX2 out
var PADY = 31;// PADY2 out
var FULLHTML = 34;
var ABOVE = 35;
var BELOW = 36;
var CAPICON = 37;
var TEXTFONT = 38;
var CAPTIONFONT = 39;
var CLOSEFONT = 40;
var TEXTSIZE = 41;
var CAPTIONSIZE = 42;
var CLOSESIZE = 43;
var FRAME = 44;
var TIMEOUT = 45;
var FUNCTION = 46;
var DELAY = 47;
var HAUTO = 48;
var VAUTO = 49;
var CLOSECLICK = 50;
var CSSOFF = 51;
var CSSSTYLE = 52;
var CSSCLASS = 53;
var FGCLASS = 54;
var BGCLASS = 55;
var TEXTFONTCLASS = 56;
var CAPTIONFONTCLASS = 57;
var CLOSEFONTCLASS = 58;
var PADUNIT = 59;
var HEIGHTUNIT = 60;
var WIDTHUNIT = 61;
var TEXTSIZEUNIT = 62;
var TEXTDECORATION = 63;
var TEXTSTYLE = 64;
var TEXTWEIGHT = 65;
var CAPTIONSIZEUNIT = 66;
var CAPTIONDECORATION = 67;
var CAPTIONSTYLE = 68;
var CAPTIONWEIGHT = 69;
var CLOSESIZEUNIT = 70;
var CLOSEDECORATION = 71;
var CLOSESTYLE = 72;
var CLOSEWEIGHT = 73;
if (typeof ol_fgcolor == "undefined") {
	var ol_fgcolor = "#CCCCFF";
}
if (typeof ol_bgcolor == "undefined") {
	var ol_bgcolor = "#333399";
}
if (typeof ol_textcolor == "undefined") {
	var ol_textcolor = "#000000";
}
if (typeof ol_capcolor == "undefined") {
	var ol_capcolor = "#FFFFFF";
}
if (typeof ol_closecolor == "undefined") {
	var ol_closecolor = "#9999FF";
}
if (typeof ol_textfont == "undefined") {
	var ol_textfont = "Verdana,Arial,Helvetica";
}
if (typeof ol_captionfont == "undefined") {
	var ol_captionfont = "Verdana,Arial,Helvetica";
}
if (typeof ol_closefont == "undefined") {
	var ol_closefont = "Verdana,Arial,Helvetica";
}
if (typeof ol_textsize == "undefined") {
	var ol_textsize = "1";
}
if (typeof ol_captionsize == "undefined") {
	var ol_captionsize = "1";
}
if (typeof ol_closesize == "undefined") {
	var ol_closesize = "1";
}
if (typeof ol_width == "undefined") {
	var ol_width = "200";
}
if (typeof ol_border == "undefined") {
	var ol_border = "1";
}
if (typeof ol_offsetx == "undefined") {
	var ol_offsetx = 10;
}
if (typeof ol_offsety == "undefined") {
	var ol_offsety = 10;
}
if (typeof ol_text == "undefined") {
	var ol_text = "Default Text";
}
if (typeof ol_cap == "undefined") {
	var ol_cap = "";
}
if (typeof ol_sticky == "undefined") {
	var ol_sticky = 0;
}
if (typeof ol_background == "undefined") {
	var ol_background = "";
}
if (typeof ol_close == "undefined") {
	var ol_close = "确定";
}
if (typeof ol_hpos == "undefined") {
	var ol_hpos = 8;
}
if (typeof ol_status == "undefined") {
	var ol_status = "";
}
if (typeof ol_autostatus == "undefined") {
	var ol_autostatus = 0;
}
if (typeof ol_height == "undefined") {
	var ol_height = -1;
}
if (typeof ol_snapx == "undefined") {
	var ol_snapx = 0;
}
if (typeof ol_snapy == "undefined") {
	var ol_snapy = 0;
}
if (typeof ol_fixx == "undefined") {
	var ol_fixx = -1;
}
if (typeof ol_fixy == "undefined") {
	var ol_fixy = -1;
}
if (typeof ol_fgbackground == "undefined") {
	var ol_fgbackground = "";
}
if (typeof ol_bgbackground == "undefined") {
	var ol_bgbackground = "";
}
if (typeof ol_padxl == "undefined") {
	var ol_padxl = 1;
}
if (typeof ol_padxr == "undefined") {
	var ol_padxr = 1;
}
if (typeof ol_padyt == "undefined") {
	var ol_padyt = 1;
}
if (typeof ol_padyb == "undefined") {
	var ol_padyb = 1;
}
if (typeof ol_fullhtml == "undefined") {
	var ol_fullhtml = 0;
}
if (typeof ol_vpos == "undefined") {
	var ol_vpos = 36;
}
if (typeof ol_aboveheight == "undefined") {
	var ol_aboveheight = 0;
}
if (typeof ol_caption == "undefined") {
	var ol_capicon = "";
}
if (typeof ol_frame == "undefined") {
	var ol_frame = self;
}
if (typeof ol_timeout == "undefined") {
	var ol_timeout = 0;
}
if (typeof ol_function == "undefined") {
	var ol_function = Function();
}
if (typeof ol_delay == "undefined") {
	var ol_delay = 0;
}
if (typeof ol_hauto == "undefined") {
	var ol_hauto = 0;
}
if (typeof ol_vauto == "undefined") {
	var ol_vauto = 0;
}
if (typeof ol_closeclick == "undefined") {
	var ol_closeclick = 0;
}
if (typeof ol_css == "undefined") {
	var ol_css = 51;
}
if (typeof ol_fgclass == "undefined") {
	var ol_fgclass = "";
}
if (typeof ol_bgclass == "undefined") {
	var ol_bgclass = "";
}
if (typeof ol_textfontclass == "undefined") {
	var ol_textfontclass = "";
}
if (typeof ol_captionfontclass == "undefined") {
	var ol_captionfontclass = "";
}
if (typeof ol_closefontclass == "undefined") {
	var ol_closefontclass = "";
}
if (typeof ol_padunit == "undefined") {
	var ol_padunit = "px";
}
if (typeof ol_heightunit == "undefined") {
	var ol_heightunit = "px";
}
if (typeof ol_widthunit == "undefined") {
	var ol_widthunit = "px";
}
if (typeof ol_textsizeunit == "undefined") {
	var ol_textsizeunit = "px";
}
if (typeof ol_textdecoration == "undefined") {
	var ol_textdecoration = "none";
}
if (typeof ol_textstyle == "undefined") {
	var ol_textstyle = "normal";
}
if (typeof ol_textweight == "undefined") {
	var ol_textweight = "normal";
}
if (typeof ol_captionsizeunit == "undefined") {
	var ol_captionsizeunit = "px";
}
if (typeof ol_captiondecoration == "undefined") {
	var ol_captiondecoration = "none";
}
if (typeof ol_captionstyle == "undefined") {
	var ol_captionstyle = "normal";
}
if (typeof ol_captionweight == "undefined") {
	var ol_captionweight = "bold";
}
if (typeof ol_closesizeunit == "undefined") {
	var ol_closesizeunit = "px";
}
if (typeof ol_closedecoration == "undefined") {
	var ol_closedecoration = "none";
}
if (typeof ol_closestyle == "undefined") {
	var ol_closestyle = "normal";
}
if (typeof ol_closeweight == "undefined") {
	var ol_closeweight = "normal";
}
if (typeof ol_texts == "undefined") {
	var ol_texts = new Array("Text 0", "Text 1");
}
if (typeof ol_caps == "undefined") {
	var ol_caps = new Array("Caption 0", "Caption 1");
}
var otext = "";
var ocap = "";
var osticky = 0;
var obackground = "";
var oclose = "Close";
var ohpos = 8;
var ooffsetx = 2;
var ooffsety = 2;
var ofgcolor = "";
var obgcolor = "";
var otextcolor = "";
var ocapcolor = "";
var oclosecolor = "";
var owidth = 100;
var oborder = 1;
var ostatus = "";
var oautostatus = 0;
var oheight = -1;
var osnapx = 0;
var osnapy = 0;
var ofixx = -1;
var ofixy = -1;
var ofgbackground = "";
var obgbackground = "";
var opadxl = 0;
var opadxr = 0;
var opadyt = 0;
var opadyb = 0;
var ofullhtml = 0;
var ovpos = 36;
var oaboveheight = 0;
var ocapicon = "";
var otextfont = "Verdana,Arial,Helvetica";
var ocaptionfont = "Verdana,Arial,Helvetica";
var oclosefont = "Verdana,Arial,Helvetica";
var otextsize = "1";
var ocaptionsize = "1";
var oclosesize = "1";
var oframe = self;
var otimeout = 0;
var otimerid = 0;
var oallowmove = 0;
var ofunction = Function();
var odelay = 0;
var odelayid = 0;
var ohauto = 0;
var ovauto = 0;
var ocloseclick = 0;
var ocss = 51;
var ofgclass = "";
var obgclass = "";
var otextfontclass = "";
var ocaptionfontclass = "";
var oclosefontclass = "";
var opadunit = "px";
var oheightunit = "px";
var owidthunit = "px";
var otextsizeunit = "px";
var otextdecoration = "";
var otextstyle = "";
var otextweight = "";
var ocaptionsizeunit = "px";
var ocaptiondecoration = "";

⌨️ 快捷键说明

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