我正在尝试实现一个加载了ajax的工具提示,该工具提示应该包含一个HTML表格。
首先,工具提示会在执行ajax调用时显示“loading ...”文本,然后在收到HTML数据时,它将用作工具提示内容。
问题是工具提示位置似乎只在显示“loading ...”时开始计算,而不是在工具提示内容发生变化时计算。
使用以下代码初始化工具提示:
$('.my_tooltip').each(function() {
var $this = $(this),
tooltip_url = $this.data('tooltip-url'),
cache_id = tooltip_url || '',
opts = $.extend({}, {
content: function(done) {
if(tooltip.cache[cache_id]) {
return tooltip.cache[cache_id];
}
if(tooltip_url) {
Ajax.get($this.data('tooltip-url'), {}, {
dataType: 'html',
success: function(data) {
tooltip.cache[cache_id] = data;
done(tooltip.cache[cache_id]);
},
error: function() {
done('Error while loading data!');
}
});
return 'Loading...';
}
return $this.attr('title');
},
items: $this,
tooltipClass: $this.data('tooltip-class') || ('age-tooltip' + (!tooltip_id && !tooltip_url ? '-auto' : ''))
}, options);
$this.tooltip(opts);
});
这是加载后的样子,因为你看到工具提示没有自动重新定位,所以你可以看到不到一半。
在这种情况下,如果它已移过工具提示元素,它将完全可见,但即使我让工具提示消失,然后再次移动鼠标悬停,从本地工具提示缓存加载,它不会重新定位。
我已经查看了工具提示的position
属性,但是如果可能的话我想避免手动指定它,让插件自动处理它。
有没有办法让工具提示定位在 ajax加载后可见的大部分?
编辑:
我尝试了@ Stphane的解决方案,位置{my: 'left top+15', at: 'left bottom', of: this, collision: 'flipfit'}
但是它的位置不正确,似乎忽略了top
/ bottom
部分而是取了证书,如下所示:< / p>
在控制台中查看
错误:工具提示小部件实例
没有这样的方法'实例'
我猜可能是因为我们仍在使用jQuery UI版本1.10.4
答案 0 :(得分:1)
您可以利用jQuery UI position method上记录的using
属性(作为回调/挂钩)
指定后,实际属性设置将委派给此回调。
...是使用tooltip
实例getter尽快应用正确的位置:
var tooltip = {cache: []},
posSetter = function () {
// 1.10.4 code
$('.ui-tooltip').position({
// 1.12.1
// this.tooltip('instance').bindings.filter('.ui-tooltip').position({
// Put the values that fit your need
my: 'left top+15', at: 'left bottom', of: this, collision: "flip fit"
})
;
};
$('.my_tooltip').each(function() {
var $this = $(this),
ownPosSetter = posSetter.bind($this),
tooltip_url = $this.data('tooltip-url'),
cache_id = tooltip_url || '',
opts = $.extend({}, {
content: function(done) {
if (tooltip.cache[cache_id]) {
return tooltip.cache[cache_id];
}
if (tooltip_url) {
setTimeout(() => {
let content = "<div style='height:200px;width:300px'>Content Loaded!</div>";
tooltip.cache[cache_id] = content;
done(content);
setTimeout(ownPosSetter, 100);
}, 2000);
return 'Loading...';
}
return $this.attr('title');
},
items: $this,
tooltipClass: 'age-tooltip-auto'
}, {position: {using: ownPosSetter}});
$this.tooltip(opts);
});
div.contents {
min-height: 50px;
margin-top: 10px;
border: 1px solid black
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.4/css/jquery-ui.min.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js">
<!--
< link href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css" rel="stylesheet" / >
< script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js" >
-->
</script>
<div class="contents"></div>
<div class="contents"></div>
<div class="contents"></div>
<div class="contents"></div>
<div class="contents"></div>
<div class="contents"></div>
<div class="contents"></div>
<div class="contents my_tooltip" title="Some content" data-tooltip-url="//somewhere.com">Has tooltip</div>
<div class="contents my_tooltip" title="Some content" data-tooltip-url="//somewhereelse.com">Has tooltip</div>
<div class="contents" id="log"></div>
<div class="contents"></div>
<div class="contents"></div>
<div class="contents"></div>
<div class="contents"></div>