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