我在项目中使用Bootstrap的popover。由于某些原因,我无法在$(document).ready函数中初始化它。我必须使用$(window).load like
$(window).load(function() {
$('.popoverMessage').popover({
placement: 'right',
trigger: 'hover focus'
});
});
但是如果我像这样初始化popover,我必须刷新页面以获得popover工作。 对这个问题有什么看法吗?为什么我要重新加载页面?
在$(document).ready函数中,我返回popover超链接:
'<a href="#" class="popoverMessage" title="" data-content="'+users+'">'+data.length+' users</a>'
用户和数据来自数据库。