我想用与sweetalert类似的方式更改传统的window.prompt窗口。但是,如何操作输入的输入值?看下面:
这是我的代码部分:
var flag1 = true;
while (flag1 == true){
var selection = window.prompt("Give the User Id:", "Type a number!");
if ( /^[0-9]+$/.test(selection)) {
flag1=false;
}
}
我想用这个来做到这一点:
swal("Write something here:", {
content: "input",
})
.then((value) => {
swal(`You typed: ${value}`);
});
谢谢!