var checkSubmitFlg = false;
function check() {
if (!checkSubmitFlg) {
checkSubmitFlg = true;
return true;
}
else {
alert(‘禁止重复提交!‘);
return false;
}
}
时间: 2024-10-08 23:33:53