jquery里tab的close事件怎么用
1个回答
展开全部
onBeforeClose事件,不是onClose
onClose是已经关闭了
onBeforeClose 返回false ,取消关闭操作。
1
2
3
4
5
6
7
8
9
10
11
$('#tt').tabs({
onBeforeClose: function(title,index){
var target = this;
$.messager.confirm('确认','你确认想要关闭'+title,function(r){
if (r){
}
});
return false; // 阻止关闭
}
});
onClose是已经关闭了
onBeforeClose 返回false ,取消关闭操作。
1
2
3
4
5
6
7
8
9
10
11
$('#tt').tabs({
onBeforeClose: function(title,index){
var target = this;
$.messager.confirm('确认','你确认想要关闭'+title,function(r){
if (r){
}
});
return false; // 阻止关闭
}
});
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询