Asp.net layui重新加载当前页面

重新加载当前页面  
  $('#userInformation').on('click', function () {
                layer.open({
                    type: 2,
                    title: '个人中心',
                    area: ['900px', '815px'],
                    fixed: false, //不固定
                    maxmin: false,
                    content: '/Shared/PersonalInfromation',
                    end: function () {
                        location.reload();{ time: 3000 };
                    }//end function里加上 location.reload();就可以了。
                });
            });

关闭刷新父界面

    var index = parent.layer.getFrameIndex(window.name); //获取窗口索引
                            parent.layer.close(index);

你可能感兴趣的:(MVC)