ppypp伦理天堂,91手机在线视频,免费在线观看黄色毛片,夜夜穞天天穞狠狠穞AV美女按摩

聯系官方銷售客服

1835022288

028-61286886

投訴 解決中 / 官方已回 彈窗登錄,如何在登錄和注冊成功后刷新父頁面窗口 9 0
迅睿CMS版本:4.3.14

模板標簽里面

首頁彈窗登錄,可以正常顯示登錄,麻煩指點一下,如何在登錄和注冊成功后刷新父頁面窗口。layer彈出層。

 <li class="layui-inline"><button id="user-login"><i class="fad fa-user"></i>用戶登錄</button></li>
        <li class="layui-inline"><button id="user-reg"><i class="fad fa-user-plus"></i>用戶注冊</button></li>




// 登錄窗口
    $('#user-login').click(function () {
       layer.open({
            type: 2,
            title: '用戶登錄',
            offset: '10px',
            area: ['800px', '850px'],
            maxmin: true,
            content: 'index.php?s=member&c=login&m=index',
            end: function close() {
                var index = parent.layer.getFrameIndex(window.name);
                parent.layer.close(index);
            },
        });
    });

// 注冊窗口
    $('#user-reg').click(function () {
        layer.open({
            type: 2,
            title: '用戶注冊',
            offset: '10px',
            area: ['800px', '850px'],
            maxmin: true,
            content: 'index.php?s=member&c=register&m=index',
            end: function close() {
                var index = parent.layer.getFrameIndex(window.name);
                parent.layer.close(index);
            },
        });
    });
解決方案