我正在丹麦的网站上工作。我已经创建了立即购买按钮,但是数量有问题。
金额为10,00丹麦克朗,不是10.00丹麦克朗。 10,00和10.00有不同的含义。
如果我使用
<input type="hidden" name="amount" value="10.00" />
它有效。 但如果我使用
<input type="hidden" name="amount" value="10,00" />
它不起作用。我收到错误
"the link you have used to enter the paypal system contains an incorrectly formatted item amount."
这有什么解决方法吗?
答案 0 :(得分:0)
10,00 DKK和10.00 DKK之间有什么区别?
value
属性只是一个“。”的数字。用作十进制标记,没有别的。该属性没有其他含义。