加载时设置甜蜜警报输入的值

On load Set value for sweet alert input

在sweet alert 2中,如何加载设置输入值 我的甜蜜警报代码

swal({
              title: 'Are you sure?',
              text: "You are going to send emails from the system. Please confirm",                   
              showCancelButton: true,
              input: 'email',

              confirmButtonText: 'Submit',
              confirmButtonColor: '#4aa0f1',
              cancelButtonColor: '#898b8e',
              confirmButtonText: 'Send'
            }).then(function (email) {  
                send_email = email;
                sentHtmtBody_send();
                loadingIcon();
            });

我们可以添加另一个字段

inputValue : 'test value',

添加完整代码后我们可以看到它

swal({
              title: 'Are you sure?',
              text: "You are going to send emails from the system. Please confirm",                   
              showCancelButton: true,
              input: 'email',
              inputValue: "E.g john",
              confirmButtonText: 'Submit',
              confirmButtonColor: '#4aa0f1',
              cancelButtonColor: '#898b8e',
              confirmButtonText: 'Send'
            }).then(function (email) {  
                send_email = email;
                sentHtmtBody_send();
                loadingIcon();
            });

在 sweetalert2 上,我在这个 suggested way:

中实现了它
let input = document.createElement("input");
input.value = 'test';
input.type = 'text';
input.className = 'swal-content__input';
swal('Please type:', {
    content: input,
    buttons: ['Cancel', 'Update']
})
.then(() => {
    //
});