在堆栈溢出中搜索时。我发现我也面临一个老问题。但没有人回答。所以只是想知道有人对此有任何想法
如何让 jquery Tooltipster 插件适用于新创建的 DOM 元素?
以下是我的代码
$(document).ready(function() {
$('.test_link').tooltipster({
interactive:true,
content: 'Loading...',
functionBefore: function(origin, continueTooltip) {
continueTooltip();
// next, we want to check if our data has already been cached
//if (origin.data('ajax') !== 'cached') {
$.ajax({
type: 'POST',
url: 'example.php',
success: function(data) {
// update our tooltip content with our returned data and cache it
origin.tooltipster('content', $(data)).data('ajax', 'cached');
}
});
// }
}
});
});