var checkSubmitFlg = false;
  function check() {
                if (!checkSubmitFlg) {
                    checkSubmitFlg = true;
                    return true;
                }
                else {
                    alert('禁止重复提交!');
                    return false;
            }
        }

05-11 11:26