calendar.js

来自「关于网上汽车销售系统的详细编程项目实战实例」· JavaScript 代码 · 共 34 行

JS
34
字号

document.onclick=function(e){
	var t=!e?self.event.srcElement.name:e.target.name;
	if (t!="popcal") gfPop.fHideCal();
}
//**********************
// form_name form name char type
// input_name imput name char type
// calendar_dir calendar directory char type
//**********************

function ebis_calendar(form_name,input_name,calendar_dir,b){
	if(b){
		with(document){
			write('<A href="javascript:void(0)" onclick="gfPop.fDemoPopDepart(document.all(\''+input_name+'\'),'+b+');return false;"><IMG name="popcal" src="'+calendar_dir+'/calbtn.gif" border=0 alt=""></A>');
		}
	}else{
		with(document){
			write('<A href="javascript:void(0)" onclick="gfPop.fDemoPopDepart(document.all(\''+input_name+'\'));return false;"><IMG name="popcal" src="'+calendar_dir+'/calbtn.gif" border=0 alt=""></A>');
		}

	}
	
	
}

//**********************
// calendar_dir calendar directory char type
//***********************
function iframe_insert(calendar_dir){
	
	document.write('<iframe width=124 height=153 name="gToday:supermini:agenda.js" id="gToday:supermini:agenda.js" src="'+calendar_dir+'/ipopeng.htm" scrolling="no" frameborder="0" style="visibility:hidden; z-index:65535; position:absolute; top:0px;"></iframe>');
}

⌨️ 快捷键说明

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