- 注册时间
- 2014-7-21
- 最后登录
- 2022-7-26
- 阅读权限
- 150
- 积分
- 18264
- 精华
- 0
- 帖子
- 8338
 
|
<div title="<a class='showCellTooltip' >Tab2</a>" iconCls="icon-cut" >
var tip = new mini.ToolTip();
tip.set({
target: document,
selector: '.showCellTooltip',
onbeforeopen: function (e) {
e.cancel = false;
},
onopen: function (e) {
var el = e.element;
tip.setContent("aaaaa");
}
}); |
|