var title = $(this).text()//选项卡名称
//拼接一个Iframe标签,选项卡内容
var str = '<iframe id="frmWork" width="100%" height="100%" frameborder="0" scrolling="auto" src="' + $(this).attr("src") + '"></iframe>'
//首先判断用户是否已经单击了此项,如果单击了直接获取焦点,否则打开
var isExist = $("#tab").tabs('exists', title)
if (!isExist) {
//添加tab的节点,调用easyUITab标签的方法
$("#tab").tabs('add', {
title: title,
content: str,
iconCls: 'icon-save',
closable: true
})
}
else {
//如果存在则获取焦点
$("#worktab").tabs('select', title)
}
})
}
在用到的地方调用这个函数
看看官方API很简单原理是后代发送JSON的字符串,前台接收后会自动处理,TABLE的ID和JSON中的KEY要对应。
就这么简单
不懂可以查一下w3c
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)