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

📄 fun_script.js

📁 OFFICE办公自动化
💻 JS
字号:

//URL的跳转
function gotourl(url,sname,swidth,sheight,sreplace,sclose)
{
	var objNewWin;				
	if (swidth=="") swidth = "790";
	if (sheight=="") sheight = "480";
	if (sreplace=="") sreplace = false;
	if (sclose=="") sclose = false;
	objNewWin = window.open(url,sname,"fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=" + swidth + ",height=" + sheight + ",top=200,left=200",sreplace);	
	//alert(objNewWin.opener.dialogLeft);
	// + "aaa" + objNewWin.opener.screenTop);
	if (sclose) window.close();
	objNewWin.focus();	
}

function popdialog(url,swidth,sheight){
	if (swidth=="") swidth = "280";
	if (sheight=="") swidth = "180";
	var sValue = showModalDialog(url,"","dialogWidth:" + swidth + ";status:no;dialogHeight:" + sheight);
	return sValue;
}

		
 

⌨️ 快捷键说明

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