admin管理员组文章数量:1391981
I'm using Sweetalert2 from /, this is my configuration
swal({
title: 'Success!',
type: 'success',
toast: true,
html: response.message,
showCloseButton: true,
showCancelButton: true,
allowEscapeKey: true,
allowOutsideClick: true,
//focusConfirm: false,
confirmButtonText: 'Continue Shopping',
confirmButtonAriaLabel: 'Continue Shopping',
cancelButtonText: '<a href="' + cartLink + '" style="color:white;">View Cart and Checkout</a>',
cancelButtonColor: '#ff6d02',
cancelButtonAriaLabel: 'Cart',
});
This is the result
So, the problem is that the outsideclick true config doesn't work and the close button is not on the right. How can I fix this please?
I'm using Sweetalert2 from https://sweetalert2.github.io/, this is my configuration
swal({
title: 'Success!',
type: 'success',
toast: true,
html: response.message,
showCloseButton: true,
showCancelButton: true,
allowEscapeKey: true,
allowOutsideClick: true,
//focusConfirm: false,
confirmButtonText: 'Continue Shopping',
confirmButtonAriaLabel: 'Continue Shopping',
cancelButtonText: '<a href="' + cartLink + '" style="color:white;">View Cart and Checkout</a>',
cancelButtonColor: '#ff6d02',
cancelButtonAriaLabel: 'Cart',
});
This is the result
So, the problem is that the outsideclick true config doesn't work and the close button is not on the right. How can I fix this please?
Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Jul 26, 2018 at 9:12 degee147degee147 2552 gold badges5 silver badges15 bronze badges1 Answer
Reset to default 6I'm the author of SweetAlert2, thanks for posting this question.
1. Close button
close button is not on the right
This is fixed in the latest release (v7.26.4
), please update your dependency.
2. allowOutsideClick
parameter
The allowOutsideClick
parameter isn't patible with toasts, since toasts are modeless and don't have a backdrop. In the latest version you will get the console warning about inpatible with toasts parameters:
本文标签:
版权声明:本文标题:javascript - Sweetalert2 allowOutsideClick not working on toast mode and close button not appearing on right side - Stack Overfl 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744734868a2622265.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论