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

📄 global.js

📁 一个很不错的开发系统的程序
💻 JS
字号:
/* * $RCSfile$ * $Revision: 14166 $ * $Date: 2005-02-07 17:57:29 -0600 (Mon, 07 Feb 2005) $ * * Copyright (C) 1999-2004 Jive Software. All rights reserved. * * This software is the proprietary information of Jive Software. Use is subject to license terms. *//* * Returns a page element by its id in a non browser specific way. */function getEl(id) {    if (document.layers) { return document.layers[id]; }    else if (document.all) { return document.all[id]; }    else if (document.getElementById) { return document.getElementById(id); }}function openWin(url) {    var win = window.open(url,'newWindow','width=450,height=400,menubar=yes,location=no,statusbar=yes,personalbar=no,scrollbars=yes,resize=yes');}

⌨️ 快捷键说明

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