如何运行同时形成action和onclick事件?

How to run form action and onclick event at the same time?

在这种情况下,只有 Javascript 函数有效。但是我想同时 运行 JavaScript function(onclick event)form action (我的 PHP 后端),该怎么做?

<tr id="tr4" class="table-danger">
  <td>Geethan</td>
  <td>
    <form action='include/action.php?user_id=3' method='post'>
      <input id="tr4_btn" class="btn btn-warning" type="button" value="Take action" onclick="takeaction(this.id,'tr4','tr4_i')" />
      <i id="tr4_i" class="fa " style="color:green;"></i>
    </form>
  </td>
</tr>

因为当您提交表单时,网站将被重定向到表单操作,所以您的操作如果没有完成,将被取消。 你可以这样试试(jQuery).

function takeaction(id,$val1,$val2){
     var $this = jQuery('#'+id);
     var $form = $this.parents('form');
     //...your javascript code at here
     // after run your code
    $form.submit();// to submit form
}