layer.msg弾窓は閉じず、内容を変更します.遅延クローズの設定

2150 ワード

プロジェクトプレゼンテーションページは、ボタンをクリックした後に応答が遅く、体験効果を増進するために、まずウィンドウのヒントをポップアップし、応答が戻ってからヒントの内容を修正します.
ポップアップ内容のカスタマイズ:
layer.msg('   ......', {icon:1,area:['260px','200px']});
$.ajax({
    type: 'post',
    url: "/monitor/demos/testDemos",
    data: {},
    dataType: 'json',
    success: function (result) {
        if (result.flag ==true) {
            $("#confirm").text("      ");
            setTimeout(function () {
                layer.closeAll();
            }, 6000);
        } 
    }
});