我正在尝试这样做:
$("a[rel=popover]").popover({
html: true,
trigger: 'hover',
content: '<img src="'+$(this).data('img')+'" />'
});
但它不起作用,因为 $(this).data('img') 不起作用。
为什么我这样做,我在 data-content 属性中与模板和 html 有冲突。因此,我将图像源放在 data-img 属性中,并喜欢将其抓取并放入 img 元素中。
我已经尝试过了,但效果不完全:
$("a[rel=popover_img]").popover({
html: true,
trigger: 'hover',
content: '<img src="#" id="popover_img" />'
}).hover(function(){
$('#popover_img').attr('src',$(this).data('img'));
});
我希望有人可以帮助我:)