我在條形碼上看到了它,但我沒有在表單提交中以這種方式使用它。
https://gist.github.com/briancollins/6365455
什麼是使用.get(0)
的原因是什麼?
var stripeResponseHandler = function(status, response) {
var $form = $('#payment-form');
if (response.error) {
// Show the errors on the form
$form.find('.payment-errors').text(response.error.message);
$form.find('button').prop('disabled', false);
} else {
// token contains id, last4, and card type
var token = response.id;
// Insert the token into the form so it gets submitted to the server
$form.append($('<input type="hidden" name="stripeToken" />').val(token));
// and re-submit
$form.get(0).submit();
}
檢查文檔:http://api.jquery.com/get/「$ form.get(0)'與$ form [0]'相同。它從jQuery對象中獲取'0'位置的DOM元素。 –
@RocketHazmat因爲這裏沒有更好的(或者更多的參與)答案.. – user2864740