0

我正在使用 Paypal 在网站上接受付款。它在全尺寸网站上运行良好,但是当我在运行 jQuery mobile 的移动版网站上实现相同的代码时,“添加到购物车”按钮不起作用。

我使用的是网站支付标准,所以它不像在这篇文章中添加“-mobile”那么简单:Paypal Checkout in mobile website

Paypal 说页面应该自动重定向,但它没有。

我的按钮也没有正确显示,这很奇怪。在我的笔记本电脑上(在移动网站上),按钮被奇怪地拉伸了,在我的手机上(在移动网站上),按钮看起来也很奇怪。

这是我的 Paypal 按钮代码:

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="ZQK9WXTYG3SDN">
<table>
<tr><td><input type="hidden" name="on0" value="Weekend Ticket Type">Weekend Ticket Type</td></tr><tr><td><select name="os0">
<option value="Full Price Weekend Ticket">Full Price Weekend Ticket £42.00 GBP</option>
<option value="Weekend Concession Ticket">Weekend Concession Ticket £40.00 GBP</option>
<option value="Under 12 Weekend Ticket">Under 12 Weekend Ticket £0.00 GBP</option>
</select> </td></tr>
</table>
<input type="hidden" name="currency_code" value="GBP">
<input style="padding:20px 0px 0px 0px;" width="120" type="image" src="http://www.website-domain.com/images/PayPal-button.jpg" border="0" name="submit" alt="PayPal — The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>

(我已更改网站域名以阻止它在搜索引擎中被收录;-)

非常感谢您的帮助

4

1 回答 1

0

我建议 jQuery Mobile 正在劫持您的表单提交(就像它也使用<a href="..">标签一样)。尝试添加data-ajax="false"到您的<form>标签。

您可以在此处找到有关此行为的更多信息:http: //jquerymobile.com/test/docs/forms/forms-sample.html

或者通过将此代码段添加到您的代码来全局禁用它:

$(document).bind("mobileinit", function(){
  $.mobile.ajaxEnabled = false;
});
于 2012-09-03T22:07:19.187 回答