第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

SweetAlert確認(rèn)后關(guān)閉的問(wèn)題

SweetAlert確認(rèn)后關(guān)閉的問(wèn)題

最近用上了swal,項(xiàng)目需要,colseOnConfirm:true,因?yàn)椤包c(diǎn)擊之后提示框不能loading住頁(yè)面,不能防止用戶再次點(diǎn)擊”,所以設(shè)為true點(diǎn)擊之后關(guān)閉,設(shè)為true問(wèn)題又來(lái)了,如果執(zhí)行太快里面的swal就不會(huì)彈出提示了,需要setTimeOut等待幾秒鐘才能彈出提示,真是蛋疼,你們有什么好的方法啊
查看完整描述

1 回答

?
FFIVE

TA貢獻(xiàn)1797條經(jīng)驗(yàn) 獲得超6個(gè)贊

因?yàn)閯?dòng)畫有延遲, 可以用promise,進(jìn)行二次封裝。

window.mconfirm = function (options) {
var prom = new Promise(function (resolve, reject) {
var swalOptions = {
title: "",
text: "",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "確認(rèn)",
cancelButtonText: "取消",
closeOnConfirm: true,
closeOnCancel: true
};

if (typeof(options) == 'object') {
swalOptions = $.extend(swalOptions, options);
} else {
swalOptions = $.extend(swalOptions, {text: options});
}

swal(swalOptions, function (isConfirm) {
setTimeout(function () {
if (isConfirm) {
resolve(isConfirm);
} else {
reject(isConfirm);
}
}, 100);
});
});
return prom;
};

window.mprompt = function (options) {
var prom = new Promise(function (resolve, reject) {
var swalOptions = {
title: "",
text: "Write something interesting:",
type: "input",
showCancelButton: true,
closeOnConfirm: false,
confirmButtonText: "確認(rèn)",
cancelButtonText: "取消",
inputPlaceholder: "Write something"
};

if (typeof(options) == 'object') {
swalOptions = $.extend(swalOptions, options);
} else {
swalOptions = $.extend(swalOptions, {text: options});
}

swal(swalOptions, function (inputValue) {
if (inputValue === false || inputValue === "") return false;
swal.close();
setTimeout(function () {
resolve(inputValue);
}, 100);
});
});

return prom;
};


查看完整回答
反對(duì) 回復(fù) 2018-08-20
  • 1 回答
  • 0 關(guān)注
  • 1971 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)