1

以下是我正在开发的功能的简化版本。如果有人可以提供帮助,我可以轻松地将其适应我的现实情况。

在我的示例中,如果在 JavaScript 中使用英语版 input[id=item_name] 提交表单,则它可以工作。俄语版本的 input[id=item_name] 处于活动状态,它不起作用……问题是当您最终使用 PayPal 时,描述是 Gobbledygook。

如果您在每个版本的 input[id=item_name] 活动的情况下提交表单,您将在访问 PayPal 时看到问题(在描述上)。

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
</head>
<body>


<form action="https://www.paypal.com/cgi-bin/webscr" method="post" accept-charset="UTF-8">

<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="email@website.com">
<input type="hidden" name="no_shipping" value="1" />
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="lc" value="RU">
<input type="hidden" name="item_name" id="item_name" value="">
<input type="hidden"name="amount" id="amount" value="">
<input name="submit" type="submit" value="Submit">
</form>


<script type="text/javascript">


/*This Doesn't Work*/
$('input[id=item_name]').val('50 слов перевода');

/*This Does Work*/
/*$('input[id=item_name]').val('50 Word Translation');*/


$('input[id=amount]').val('5.00');      
</script>


</body>
</html>
4

1 回答 1

2

您可以在表单中添加一个额外的输入字段并查看它是否会发生任何变化吗?

<input type="hidden" name="charset" value="utf-8"> 

也检查一下:http ://www.nopcommerce.com/boards/t/19293/paypal-greek-characters.aspx#84782 我目前无法访问 PP Sandbox,否则我会尝试帮助更多。

于 2013-07-16T00:14:19.557 回答