加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
swal({ title: 'Input something', input: 'text', showCancelButton: true, inputValidator: function(value) { return new Promise(function(resolve, reject) { if (value) { resolve(); } else { reject('You need to write something!'); } }); } }).then(function(result) { if (result) { swal({ type: 'success', html: 'You entered: ' + result }); } })
swal({
title: 'Input something',
input: 'text',
showCancelButton: true,
inputValidator: function(value) {
return new Promise(function(resolve, reject) {
if (value) {
resolve();
} else {
reject('You need to write something!');
}
});
}
}).then(function(result) {
if (result) {
swal({
type: 'success',
html: 'You entered: ' + result
});
}
})
sweetalert2 新版的CSS NW环境解析不了 所以只能用老版本。
可以自行搜索文档 |