0
我正在使用Stripe的自定義集成,我知道在他們的示例中他們正在添加一個事件偵聽器,但在我的JavaScript代碼我跳過,不知道這是爲什麼加載指標從來沒有有人關閉時會消失。條紋結帳加載指示器不會去
這裏是我的代碼:
var handler = StripeCheckout.configure({
key: 'tests',
image: 'https://stripe.com/img/documentation/checkout/marketplace.png',
locale: 'auto',
token: function(token) {
// You can access the token ID with `token.id`.
// Get the token ID to your server-side code for use.
},
closed: function() {
// Close Checkout on page navigation:
closehandler();
}
});
handler.open({
name: 'Jungle Exchange',
description: 'Get your Amazon On!',
amount: amount
});
function closehandler() {
handler.close();
}
當在x爲點擊模式,加載圖標不從畫面中央消失,覆蓋一切。有什麼想法嗎?
謝謝!