同一个form表单两个按钮提交两个接口

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>支付测试模板</title>
</head>
<body>
<form action="" name="pay" method="post" enctype="multipart/form-data">
    评估类型:<input type="text" name="assess_type"/><br/>
    购买年限:<input type="text" name="assess_year"/><br/>
    邀请码数量:<input type="text" name="code_num"/><br/>
    购买年限:<input type="text" name="report_year"/><br/>
    是否开发票:<input type="text" name="report_bill"/><br/>
    姓名:<input type="text" name="report_address_uname"/><br/>
    电话:<input type="text" name="report_address_mobile"/><br/>
    地址:<input type="text" name="report_address"/><br/>
    单价:<input type="text" name="price"/><br/>
    数量:<input type="text" name="num"/><br/>
    总金额:<input type="text" name="total_fee"/><br/>
    <button onclick="wei()"/>微信支付</button>
    <button onclick="zhi()"/>支付宝支付</button>
</form>
</body>
</html>

<script>
    function wei(){
     // 跳转形式:
     // document.("表单的name值").action = “”
     // document.("表单的name值").submit = “”
        document.pay.action="跳转的链接";
        document.pay.submit();
    }
    function zhi() {
        document.pay.action = "跳转的链接";
        document.pay.submit();
    }
</script>

或者

<script language="javascript">
function save(){ 
    document.form1.action="要跳转的链接";
    document.form1.submit();
}
function send(){
    document.form1.action="要跳转的链接";
    document.form1.submit();
}
</script>
<form name="form1">
<input type="button" name="btn1" value="发送" onclick="send();">
<input type="button" name="btn2" value="保存" onclick="save();">
</form>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值