gpt4 book ai didi

paypal - 我可以在 Paypal 上设置最大和最小付款金额吗

转载 作者:太空宇宙 更新时间:2023-11-03 16:11:55 26 4
gpt4 key购买 nike

我是支付网关方式的新手,需要将购买限制在预定义的最小值和最大值之间。我搜索了谷歌,发现 this作为最有用的结果。有办法实现吗?

最佳答案

您可以使用 MAXAMT 设置最大值 - read more

但是,没有选项可以使用 Paypal 设置最低金额。但是您可以编写一个简单的 JS 来检查提交表单字段值并在金额小于预期时抛出错误:

function checkMinimum() {
var min = 5;
if( parseFloat( document.formName.fieldName.value ) < min ) {
alert("Minimum amount should be not less than $" + min + ". Spend more.");
return false;
}
return true;
}

关于paypal - 我可以在 Paypal 上设置最大和最小付款金额吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10782658/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com