bootstrap modal 彈出效果

window.showMsg = function (msg) {
    //顯示懸浮窗
    $("#autoCloseModal").modal("show")
    //設置文本內容
    $("#autoCloseModal #autoCloseModalBody").html("")
    $("#autoCloseModal #autoCloseModalBody").html(msg);
    //兩秒後消失
    setTimeout(function () { $("#autoCloseModal").modal("hide") }, 2000);
};



調用:

showMsg('成功!');
相關文章
相關標籤/搜索