Tag: sweetalert2

Sweetalert 2 textarea异步

我尝试使用这个简单的文档示例https://sweetalert2.github.io/,但我收到错误消息: Uncaught SyntaxError:await仅在异步函数中有效 $(document).ready(function() { $(‘.buttonproblem’).click(function() { const { value : text } = await swal({ input: ‘textarea’, inputPlaceholder: ‘Type your message here’, showCancelButton: true }) if (text) { swal(text) } }) });

Sweetalert2 Ajax – 发布输入数据

我最近在我的项目上使用SweetAlert2,我想整理一个“添加注释”function。 用户单击按钮,将定向到页面,然后执行以下操作。 swal({ title: “Add Note”, input: “textarea”, showCancelButton: true, confirmButtonColor: “#1FAB45”, confirmButtonText: “Save”, cancelButtonText: “Cancel”, buttonsStyling: true }).then(function () { swal( “Sccess!”, “Your note has been saved!”, “success” ) }, function (dismiss) { if (dismiss === “cancel”) { swal( “Cancelled”, “Canceled Note”, “error” ) } }) 我想要完成的,并且遇到困难的是利用ajax从输入字段“textarea”发布数据。 我还想通过使用以下内容来validation提交是成功还是失败 ‘成功’ swal( “Sccess!”, “Your note has […]

sweetalert 2上有2个以上的按钮

我有一个带有2个按钮的sweetalert,但我想再添一个按钮。 例如,截至目前,我有,是的,我想再添加一个按钮。 请帮忙 $(“#close_account”).on(“click”, function(e) { e.preventDefault(); swal({ title: “Are you sure?”, text: “You will not be able to open your account!”, type: “warning”, showCancelButton: true, confirmButtonColor: “#DD6B55”, confirmButtonText: “Yes, close my account!”, closeOnConfirm: false }, function(){ window.location.href=”” }); }); 提前致谢:)

未使用(承诺)取消使用SweetAlert2

如何在使用promises时正确转义取消按钮而不会抛出错误? 我的代码会抛出一个带有必填复选框的警报确认。 代码应该对用户执行,但它会在控制台窗口中引发错误: 未被捕(承诺)取消 //validation logic all passes…Now proceed to… else { //determine and parse Discounts var myLookup = document.getElementsByName(“myLookup”)[0].value; $.post( “findthem.php”, {myLookup: myLookup }) .done(function(json_data){ var theResponse1 = $.parseJSON(json_data); myDiscountRate = theResponse1[‘ourDiscountFound’]; }).then( function(callback){ priceRate = priceRate * (1 – (.01 * myDiscountRate)); newRate = priceRate.toFixed(2); } swal({ title: “Confirm”, input: ‘checkbox’, inputValue: 0, […]