js点击等待,然后发表表格

时间:2014-01-21 17:18:42

标签: javascript jquery

我正在尝试使用ONClick提交表单。但是,我希望Onclick在继续提交之前等待1秒钟。我试图实现这一点,但现在表格根本没有提交。

CODE:
http://pastebin.com/enhL8XwN (不能直接发布代码,SO不会提交问题)

1 个答案:

答案 0 :(得分:1)

您将事件绑定到表单点击事件。尝试添加另一个按钮并将事件附加到它。

<form action="voteupdate.php" id="form-id" method="post">  
  <input type="hidden" name="type" id="type" value="' . $type . '">  
  <input type="hidden" name="id" id="id" value="' . $id . '">  
  <div class="btn-group" data-toggle="buttons">  
    <label class="btn btn-default '.$vup.'">  
        <input type="radio" name="vote" id="1" value="1">  
     <span class="glyphicon glyphicon-chevron-up"></span> Vote up  
     </label>  
    <label class="btn btn-default '.$vd.'">  
        <input type="radio" name="vote" id="2" value="2">  
   <span class="glyphicon glyphicon-chevron-down"></span> Vote down    
    </label>    
  </div>
  <input type="button" value="Submit" onclick="setTimeout(function(){ document.getElementById('form-id').submit(); }, 1000)" />


</form>