我有一个工具提示-A,它通过ajax加载其内容。它包含一个用于打开另一个工具提示-B的链接。
何时打开两个工具提示关闭工具提示目前的工作方式如下:
我想实现:
$(document).on('click', '.tooltip-a', function(event) {
$(this).qtip({
show: {
event: event.type,
ready: true
},
hide: 'unfocus',
content: {
text: function(event, api) {
// Ajax content simplified for this example
return '<h1>tooltip-A</h1> <a href="#" class="tooltip-b">open tooltip-B</a>';
}
}
});
});
$(document).on('click', '.tooltip-b', function(event) {
$(this).qtip({
show: {
event: event.type,
ready: true
},
hide: 'unfocus',
content: {
text: function(event, api) {
return '<h1>tooltip-B</h1> <span>Click inside this tooltip should NOT close tooltip-A</span>';
}
}
});
});
答案 0 :(得分:0)
我明白了:
$(document).on('click', '.tooltip-a', function(event) {
$(this).qtip({
show: {
event: event.type,
ready: true
},
hide: 'unfocus',
events: {
hide: function(event, api) {
if ($(this).nextAll('.qtip').has(event.originalEvent.target).length)
{
event.preventDefault();
}
}
}
content: {
text: function(event, api) {
// Ajax content simplified for this example
return '<h1>tooltip-A</h1> <a href="#" class="tooltip-b">open tooltip-B</a>';
}
}
});
});