为了账号安全,请及时绑定邮箱和手机立即绑定

如何弹出插件的消息框,才跳转页面

如何弹出插件的消息框,才跳转页面

凤凰求蛊 2018-07-21 09:14:16
$.ajax({                type:"post",                 url: "/menu/delete",                 data: {"id":$("#operateMenuOfNodeId").val()},                 success:function(data){                    if(data.success == true){                         toastr.success(data.message);                         window.location.reload();                     }else{                         toastr.error(data.message);                     }                 },                error:function(){                     toastr.error("服务器错误");                 }             });                                                  toastr.success(data.message);这个是弹出一个消息框,但是由于跳转了页面,没有显示出来,我想要的效果是跳转页面的时候,消息框同步显示。
查看完整描述

1 回答

?
牧羊人nacy

TA贡献1862条经验 获得超7个赞


用settimeout 延时跳转
$.ajax({    type:"post",
    url: "/menu/delete",
    data: {"id":$("#operateMenuOfNodeId").val()},
    success:function(data){        if(data.success == true){
            toastr.success(data.message);
            setTimeout(function() {
              window.location.reload();
            }, 3000)   
        }else{
            toastr.error(data.message);
        }
    },    error:function(){
        toastr.error("服务器错误");
    }
});


查看完整回答
反对 回复 2018-07-21
  • 1 回答
  • 0 关注
  • 142 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信