0

我有一个提交按钮:

<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...';}

提交更改为Please Wait时的按钮,但未提交表单。

有什么帮助吗?

TKS 全部

4

1 回答 1

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...';
于 2013-05-28T00:37:11.293 回答