我目前正在使用Stripe支付系统,我想重载"描述"部分。 不幸的是,代码是由javascript生成的,我无法确保将我的更改考虑在内。 在浏览器控制台中,当我改变一切都很好,但如果我采取Stripe的类,我把它们放在"!重要",它不起作用。
代码条纹:
handler.open({
name: 'Test',
description: 'Your transaction is insured securely by our payment partner Stripe. We never store sensitive data such as your card number or security code. This data is encrypted by Stripe and we do not have access to it.',
currency: 'eur',
amount: $('#toPay').text() * 100,
email: email,
allowRememberMe: false,
});
e.preventDefault();
});
如您所见,描述文字未完整显示
有没有人必须这样做?
谢谢