我想在使用AJAX動態生成的容器的懸停上使用Tooltipster插件添加工具提示。我在這方面遇到了極其困難的時刻,並且一直試圖解決這個問題好幾天了。注意:我沒有收到任何錯誤,Tooltipster正在處理非ajax元素。關於通過AJAX請求生成的元素懸停的工具提示
我很感激任何有關如何實現這一點的建議。
非常感謝提前!
的JavaScript/AJAX調用
$.ajax({
url: "get-data.php?bestItems=1",
dataType: "html",
success: function(data){
$(".best-items-container").html(data).show();
}
});
工具提示初始化/事件
$('.best-item-option').tooltipster({
custom: 'hover',
onlyOne: true, // allow multiple tips to be open at a time
position: 'left', // display the tips to the left of the element
theme: '.my-custom-theme'
});
$(document).on('hover', '.best-item-option', function(){
$('.best-item-option').tooltipster('show');
});
動態HTML片段(PHP)
<div class="best-items-container">
<div class="best-item-option" title="Testing Tooltip">
<div class="hotItemName">'. $data['name'][$i].'</div>
</div>
</div>