有时候我们需要在popover中显示html代码,比如显示图片,那么我们可以这么做:
Html代码
<input id="radio_1" type="radio" rel="popover" data-img="/Images/all.png" checked="checked" value="all" name="a">选项1</label>
Jquery代码
$('input[rel=popover]').popover({
html: true,
trigger: 'hover',
placement: 'bottom',
content: function () { return '<img src="' + $(this).data('img') + '" />'; }
});