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

📄 formwidget.js

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 JS
字号:
// common file for all form widget javascript functions// prevents doubleposts for <submit> widgets of type "button" or "image"function submitFormWithSingleClick(button) {    // only disable when the form action is defined, otherwise forms that     // return to the same page by not specifying an action will continue to    // heve the button disabled in IE and maybe other browsers    if (button.form.action != null && button.form.action.length > 0) {        button.disabled = true;    }    button.form.submit();}

⌨️ 快捷键说明

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