📄 formwidget.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 + -