📄 calendar.js
字号:
function fPopUpCalendarDlg(ctrlobj,prePath)
{
showx = event.screenX - event.offsetX - 4 - 210 ; // + deltaX;
showy = event.screenY - event.offsetY + 18; // + deltaY;
newWINwidth = 210 + 4 + 18;
//alert(prePath);
var completP;
if(prePath==undefined){
completP="/js/CalendarDlgCN.htm";
}
else{
completP= prePath+"js/CalendarDlgCN.htm";
}
retval = window.showModalDialog(completP, "", "dialogWidth:197px; dialogHeight:210px; dialogLeft:"+showx+"px; dialogTop:"+showy+"px; status:no; directories:yes;scrollbars:no;Resizable=no; " );
if( retval != null ){
ctrlobj.value = retval;
}else{
//alert("canceled");
}
}
function mouseoff(val)
{
val.style.background="#fffff";
}
function mouseon(val)
{
val.style.background="#9966aa";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -