在我的客戶頁面,調整到 我的合同頁面:
<div>請去【<a style="color:green" class="toPage" data-type="toPage" >合同管理—我的合同</a>】頁面提交審核!</div>
js:
var active = {
toPage:function () {
top.layui.index.openTabsPage("order/myOrdersList.jsp", '我的合同');
}
}
$("body").on('click','.toPage', function(){
var type = $(this).data('type');
active[type] ? active[type].call(this) : '';
});
打開另一頁面(頁簽) 的關鍵代碼:
top.layui.index.openTabsPage("order/myOrdersList.jsp", '我的合同');
轉載:https://blog.csdn.net/kuangfengbuyi/article/details/106559834
------------------------------------------------------自己項目-------------------------------------------------------------------------------
<button type="button" data-type="toPage" class="layui-btn layui-btn-normal toPage">設置分組</button> layui.use(['form', 'layedit', 'laydate','jquery','table','element',], function () { var form = layui.form; $=layui.jquery; table = layui.table; element = layui.element; var active = { toPage:function () { top.layui.index.openTabsPage("/user/word_group/index", '分組管理'); } }; $("body").on('click','.toPage', function(){ var type = $(this).data('type'); active[type] ? active[type].call(this) : ''; });