<div class="buttons"> <a href="#" class="btn btnGreen"><span>Beta Signup</span></a> <span><em>or</em></span>
<a onclick="test()" class="btn btnBlue"><span>Donate to Development</span></a> </div>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="JZDSU6T647PL4">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.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>
我希望從窗體發生的動作發生在我點擊捐贈給開發按鈕時,我怎麼能這樣做?我想要btn btnblue類的成像,但它不會轉移到表格按鈕發佈錯誤
你對btn btnblue類的成像有什麼意義?它不轉移嗎? – Gavriel
您可以在函數test()中調用表單元素的submit()函數,或者您可以創建一個新類型爲'submit'的input元素,它會在按下時自動提交它所在的表單,這就是通常的做法。 – Mandera