File: //proc/37321/root/www/wwwroot/zhifu.ws.umchkw.com/js.html
<!DOCTYPE html>
<html>
<head>
<title>Stripe Checkout Demo</title>
<script src="https://js.stripe.com/v3/"></script>
</head>
<body>
<h1>Stripe Checkout Demo</h1>
<button id="checkout-button">Pay with Card</button>
<script>
var stripe = Stripe('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');
var checkoutButton = document.getElementById('checkout-button');
checkoutButton.addEventListener('click', function() {
// 创建购买会话
stripe.redirectToCheckout({
lineItems: [{
price: '200',
quantity: 1,
}],
mode: 'payment',
successUrl: 'https://example.com/success',
cancelUrl: 'https://example.com/cancel',
}).then(function (result) {
// 处理错误
console.log(result.error.message);
});
});
</script>
</body>
</html>