JavaScript   发布时间:2022-04-16  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了javascript – 如何将HTML输入添加到甜蜜警报中?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用甜蜜警报将单选按钮添加到对话框中,但我无法做到.以下是代码:
swal({
        title: "<small>Please SELEct an reason to cancel this job !</small>",type: "warning",text:"<input type=\"radio\" name=\"reason\" value=\"male\">Reason 1<br><input type=\"radio\" name=\"reason\" value=\"female\">Reason 2<br><input type=\"radio\" name=\"reason\" value=\"female\">Other Reason",showCancelButton: true,confirmButtonColor: "#DD6B55",confirmButtontext: "Yes",cancelButtontext: "No",closeOnConfirm: false,closeOnCancel: false,html: true
    },function(isConfirm){
                if (isConfirm) {
                    swal("Result !","Job cancelled successfully.");
                } else {
                    swal("Cancelled  !","Process aborted");
                }
            });

解决方法

@H_772_7@ 默认的sweetalert样式表隐藏了警报中的所有输入字段,因此您必须恢复初始值:
.sweet-alert input {
   display: initial;
   width: auto;
   height: auto;
   margin: auto;
}

大佬总结

以上是大佬教程为你收集整理的javascript – 如何将HTML输入添加到甜蜜警报中?全部内容,希望文章能够帮你解决javascript – 如何将HTML输入添加到甜蜜警报中?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。