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

📄 print.js

📁 JSP工程应用与实践
💻 JS
字号:
function blockEvents() {
	var deadend;
	opener.captureEvents(Event.CLICK, Event.MOUSEDOWN, Event.MOUSEUP, Event.FOCUS);
	opener.onclick = deadend;
	opener.onmousedown = deadend;
	opener.onmouseup = deadend;
	opener.focus = deadend;
}

function unblockEvents() {
	opener.releaseEvents(Event.CLICK, Event.MOUSEDOWN, Event.MOUSEUP, Event.FOCUS);
	opener.onclick = null;
	opener.mousedown = null;
	opener.mouseup = null;
	opener.onfocus = null;
}

function finished() {
	setTimeout("close()", 1000);
}

function installNsPlugin(pluginUrl, registryName, pluginVersion) {
	if (InstallTrigger.enabled()) {
		var existingVersion = InstallTrigger.getVersion(registryName);

		if (!existingVersion || existingVersion != pluginVersion) {

			xpi = {'ActiveX Print Control':pluginUrl};
			InstallTrigger.install(xpi, callback);
		}
	}
}

function callback(url, status) {
	if (status) {
		alert("Installation of the ActiveX Print Control failed.  Error code: " + status);
	}
}

function checkModal(dlgWindow) {
	if (dlgWindow && !dlgWindow.closed)
	dlgWindow.focus();
}

⌨️ 快捷键说明

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