搜索了很多人的解答,但基本都是这样写的:
1 2 3 4 5 6 7 |
layer.msg(d.msg, { icon: 1, time: 3000, shade: 0.4 }, function () { location.href = "{:url('admin/index')}" }); |
但是,这样写很可能执行不到,建议这样写:
1 2 3 4 5 6 7 8 9 10 11 |
done: function(res){ layer.msg(res.msg, { time: 2000, end: function () { console.log('updated'); console.log('close'); parent.layer.close(index); parent.location.reload(); } }); } |
原创文章,作者:蓝洛水深,如若转载,请注明出处:https://blog.lanluo.cn/9998