| 1234567891011121314151617181920212223242526272829303132 |
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>支付宝即时到帐接口</title>
- </head>
- <style type="text/css">
- .paybtn {
- width: 100px;
- border: 1px solid #000000;
- text-align: center;
- padding: 10px;
- float: left;
- margin: 10px;
- cursor: pointer;
- }
- .paybtn:active {
- border: 2px solid #000000;
- }
- </style>
- <body>
- <form action="/" method="post">
- <input type="text" name="subject" placeholder="标题"/>
- <input type="text" name="body" placeholder="备注">
- <input type="text" name="total_fee" placeholder="付款金额"/>
- <input type="submit" value="确认付款">
- </form>
- <h2>选择支付方式</h2>
- <div class="paybtn">支付宝</div>
- <div class="paybtn">微信</div>
- </body>
- </html>
|