One form with two submit buttons and different actions for each button

后端 未结 4 1901
野趣味
野趣味 2020-12-03 00:57

I have spent several hours trying to find a solution to my issue, but just can\'t seem to find the proper solution. Thanks in advance for your assistance!

I have ON

4条回答
  •  死守一世寂寞
    2020-12-03 01:58

    I have the same issue. but the thing is the first button function is in JS while the other is using PHP.

    $('#add-bookingid').submit(function(e){
    e.preventDefault();
    calculateDistance();
    });
    

    You see $('#add-bookingid').submit so both buttons have same button type as submit.

    Main Purpose

    Button# 1

    Button# 2

提交回复
热议问题