1. 程式人生 > >JS:layer.js實現loading:訂單匯入中

JS:layer.js實現loading:訂單匯入中

1.引入

    <script src="${pageContext.request.contextPath}/core/js/layer/layer.js"></script>

  1. 使用
        $("#importYz").click(function () {
        	layer.msg("開始匯入有贊商城訂單...");
            $.ajax({
                type: "POST",
                url: "/manage/order/createYZOrder",
                dataType: "json",
                success: function (data) {
                    if (data.res == 1) {
                    	layer.msg("匯入有贊商城訂單完成");
                        $("#orderTable").dataTable().fnDraw(true);
                    }
                }
            });
        });

3.演示
匯入中
在這裡插入圖片描述
匯入完成
在這裡插入圖片描述