我有一個jqtouch網站內的PayPal按鈕如下故障排除貝寶
<div id="paypal">
<div class="toolbar">
<h5>Pay online</h5>
<a href="#" class="back">Back</a>
</div>
<div class="s-scrollwrapper" >
<div>
<form action="https://www.paypal.com/cgi-bin/webscr"method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="[email protected]">
<input type="hidden" name="item_name" value="Test Item">
<input type="hidden" name="amount" value="1.00">
<input type="hidden" name="currency_code" value="NZD">
<input type="hidden" name="button_subtype" value="services">
<input type="hidden" name="bn"value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHosted">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1"height="1">
</form>
</div>
</div>
</div>
大坪PayPal按鈕什麼都不做。 Firebuging看到一個post
請求,結果代碼爲302
,然後是get
,該請求被取消。如果我把按鈕放在jqtouch之外的頁面上,它似乎沒有問題。你會如何解決這個問題?
Chrome控制檯顯示以下內容。在非jqtouch發起者是(other)
同樣的結果。外Jqtouch它工作正常 – maxum