首先将“on\\u sent\\u ok”更改为:
on_sent_ok: \'my_redirect();\'
然后创建
my_redirect()
显示表单的页面中的函数:
<script>
function my_redirect() {
var price = document.getElementById(\'PRICE_FIELD\').value;
var url = \'https://www.sandbox.paypal.com/us/cgi-bin/webscr?cmd=_xclick&[email protected]¤cy_code=USD&amount=\'+price+\'&return=http://http://cratecreative.com/norpac&item_name=contribution\';
window.location = url;
}
</script
完成了!只需确保更正该url中的电子邮件并替换
PRICE_FIELD
具有价格字段的实际id。