我有一个简单的表单,可以像下面的代码那样向.php脚本发出post请求。
<form action="checkout.php" method="POST">
<input id="orderemail" name="customer" required type="email" size="30" maxlength="50">
<button id="ppbutton" type="submit"><img src='images/icon/pp_button2.gif' alt='Jetzt bezahlen'/></button>
</form>
我的问题是:是否可以调用帖子请求并同时调用javascript函数?因此,只应调用该函数,然后输入字段有效并发送post请求!我希望在服务器上的脚本工作时使用“spin.js”来创建一个微调器,因为在脚本结束时,这个人被转发到paypal。
非常感谢;)!
答案 0 :(得分:0)
哦,我是个白痴:使用
的简单解决方案<form action="checkout.php" method="POST" onSubmit="javascript:spin('ppbutton')">
只用href :(