0
只是想驗證之前條紋結帳表單驗證和條紋結帳
<%= form_tag charges_path, class: 'stripeform' do %>
<input type="text" spellcheck="off" placeholder="First Name" name="first_name" class="name" required>
<input type="text" spellcheck="off" placeholder="Last Name" name="last_name" class="name" required>
<input type="checkbox" id="checkbox" required> I accept the <u>Terms and Conditions</u>
<button id="submitter">
<script src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="<%= Rails.configuration.stripe[:publishable_key] %>"
data-label="Pay"
data-panel-label="Pay"</script>
</button>
<% end %>
的推移,一些自定義參數不會發生驗證,當我點擊按鈕條紋。
當我點擊按鈕ID =「提交」,也就是其背後的驗證只發生:
我不希望它背後的按鈕。我想要條紋按鈕來驗證字段。如何做到這一點,因爲Stripe的按鈕的HTML生成?