我是靠谱客的博主 爱笑嚓茶,最近开发中收集的这篇文章主要介绍一个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="{:U('Home/Payment/getQrcode')}";
        document.pay.submit();
    }
    function zhi() {
        document.pay.action = "{:U('Home/Payment/doalipay')}";
        document.pay.submit();
    }
</script>

最后

以上就是爱笑嚓茶为你收集整理的一个form表单,有两个提交按钮,分别提交到不同页面(或不同的方法中)的全部内容,希望文章能够帮你解决一个form表单,有两个提交按钮,分别提交到不同页面(或不同的方法中)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部