我正在尝试使用 aPhonegap notification
创建 dsiplays 的确认警报:您确定要购买吗?是/否。因此,如果您按“是”,您将进入沙盒 Paypal 网站。如果按否,您在同一页面上。
问题是我无法更改表单中的操作来调用沙盒贝宝页面。
如果我从<form action="htpp:sandobox...">
它改变它不能正常工作。它加载一个主要的贝宝页面,而不是沙盒购买页面。
这是我的代码,有帮助吗?
function onConfirm(button){
alert("button="+button);
if(button==2){
return false;
}else{
if(button==1){
document.form.action="https://www.sandbox.paypal.com/cgi-bin/webscr";
return true;
}
}
}
function openPaypal(){
navigator.notification.confirm(
'Pressing Yes will continue to the final part of the order, you will not be able to come back from this point.', // mensaje (message)
onConfirm, // función 'callback' a llamar con el índice del botón pulsado (confirmCallback)
'Personalised Playing Cards: Are you sure?', // titulo (title)
'Yes,Cancel' // botones (buttonLabels)
);
}
<form name="formulario" id="formulario" action="" method="post" onSubmit="return openPaypal()">
<!-- Indica que vamos a hacer una compra tipo boton comprar ahora -->
<input type="hidden" name="cmd" value="_xclick">
<!-- Indica que no se presente un campo para notas extras -->
<input type="hidden" name="no_note" value="1">
<!-- la moneda correspondiente -->
<input type="hidden" name="currency_code" value="GBP">
<input type="image" src="../images/confirmbutton-passive.png" id="button1" style="width:100%; margin: 0px auto;" border="0" name="submit" alt="Comprar" title="Comprar">
</form>