Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
233 views
in Technique[技术] by (71.8m points)

javascript - Prevent double submit

I have a submit button:

<div class="submitForm">
<input type="submit" id="submit" value="SAVE" class="greyishBtn" onclick ="if(!DW_CheckIfImagesInBuffer())
{return confirm('No images');
}else{
 btnUpload_onclick(2)}"/>  </div>

I'm tryng to to prevent submit form twice disabling button in this way:

else{
 btnUpload_onclick(2) this.disabled=true; this.value='Please Wait...';}

Button when submit change to Please Wait, but form is not submitted.

Any help?

TKS ALL

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The problem is ; in the else statement

btnUpload_onclick(2) this.disabled=true; this.value='Please Wait...';
               //   ^ Here             ^ Like this

Change to

btnUpload_onclick(2); this.disabled=true; this.value='Please Wait...';

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...