Код: Выделить всё
const stripe = Stripe('xxx');
$(document).ready(function () {
const appearance = { /* appearance */ };
const options = {
layout: {
type: 'accordion',
},
fields: {
billingDetails: {
name: 'auto',
email: 'auto',
}
}
};
const elements = stripe.elements({ clientSecret: "@Model.paymentIntent.ClientSecret", appearance });
const paymentElement = elements.create('payment', options);
paymentElement.mount('#payment-element');
})
Подробнее здесь: https://stackoverflow.com/questions/796 ... in-and-i-w