我有一个提交按钮:
<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>
我试图以这种方式阻止提交表单两次禁用按钮:
else{
btnUpload_onclick(2) this.disabled=true; this.value='Please Wait...';}
提交更改为请等待时按钮,但表单未提交。
任何帮助?
TKS ALL
答案 0 :(得分:2)
问题是else语句中的;
btnUpload_onclick(2) this.disabled=true; this.value='Please Wait...';
// ^ Here ^ Like this
更改为
btnUpload_onclick(2); this.disabled=true; this.value='Please Wait...';