scripts.js
来自「详细的ERP设计资料」· JavaScript 代码 · 共 26 行
JS
26 行
// Standard functions used by Doc-O-Matic generated
// HTML documentation.
// This functions may be modified and distributed freely.
// This function opens the file Filename
// in Window or Frame TargetWindow.
function fillframe(TargetWindow, Filename) {
// not implemented yet
}
// This function opens the (relative) URL
// in window PopupWindowName at screen
// coordinates X and Y.
// Popups are not implemented in this version.
function showpopup(Target, PopupWindowName, X, Y) {
window.open(Target, window.name, "");
}
// This function sets the window name of a window
// to the specified value. It is used to initialize
// the window name when a document is loaded.
function setupwindow(WindowName) {
window.name = WindowName;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?