我有这个:
<form class="blocked-form efocus" action="form_process.php?source=payment" method="post">
<input type="hidden" name="fee" value="1795">
<script src="https://checkout.stripe.com/v2/checkout.js" class="stripe-button"
data-key="<?php echo $stripe['publishable_key']; ?>"
data-amount=1795 data-description="Month-to-month Package">
</script>
</form>
为了处理这个,我正在使用,form.ajaxSubmit
但因为我没有使用提交按钮,例如:
<input type="submit" name="submit" class="general-button" value="Save and Continue" />
它不会通过 AJAX 处理。form_process.php?source=payment
点击stripe提供的外部按钮时有没有办法处理?