formwidget.js

来自「Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电」· JavaScript 代码 · 共 14 行

JS
14
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?