Layui 新标签打开

原文:https://blog.csdn.net/sr_www/article/details/81394365

layuiAdmin 后台管理模板 iframe版 

在新标签中打开网页 / 在iframe中打开页面

    //iframe的方式打开 参数:url地址 tit标题
    function newTab(url, tit) {
            if (top.layui.index) {
                top.layui.index.openTabsPage(url, tit)
            } else {
                window.open(url)
            }
    }

猜你喜欢

转载自www.cnblogs.com/guxingy/p/12020276.html