このコードを使用して、寄付の値が 30 を超えているかどうかを確認し、送料を要求し、そうでない場合は送料を要求しませんが、30 未満の値を入力すると、ペイパルは通過しません
function askShipping(){
var amount = $("#amount").val();
if(amount == ''){
alert('Please enter Donation amount');
return false;
}
if(amount >= 30){
var ret = shipSuccess();
return false;
}
return false;
}
function shipSuccess(){
$( "#dialog:ui-dialog" ).dialog( "destroy" );
$( "#dialog-success" ).dialog({
height: 260,
modal: true,
buttons: {
"yes": function(){
$( this ).dialog( "close" );
shippingForm();
// document.donationForm.submit();
},
Cancel: function() {
$( this ).dialog( "close" );
document.donationForm.submit();
}
}
});
}