支付寶即時到賬POST按鈕
將下列代碼添加至你想放置即時到賬按鈕的位置即可~(注意將逐項信息進行適當修改!)
提示:如果你想使用「捐款本站」(而不是「向TA付款」)按鈕,可將 name="pay"
後的 src
修改為 http://file.arefly.com/alipay.png
!
按鈕:(試試按下去吧! )
1
2
3
4
5
6
7
|
<form action="https://shenghuo.alipay.com/send/payment/fill.htm" method="POST" target="_blank" accept-charset="GBK">
<input name="optEmail" type="hidden" value="支付寶郵箱" />
<input name="payAmount" type="hidden" value="金額" />
<input id="title" name="title" type="hidden" value="付款說明" />
<input name="memo" type="hidden" value="備註" />
<input name="pay" type="image" value="轉賬" src="https://img.alipay.com/sys/personalprod/style/mc/btn-index.png" />
</form>
|