使用popover指令https://angular-ui.github.io/bootstrap/时,使用bootstrap 3和angularjs 1.2+在popover中实现多行文本的最简洁方法是什么?
答案 0 :(得分:0)
初始化弹出框时,需要传递选项html:true。然后
和其他html标签应该有效:
$(".foo").hover(function () {
$(this).popover({
title: "Bar",
content: "Line 1 <br /> Line 2 <br /> Line 3",
html: true
}).popover('show');
}, function () {
$(this).popover('hide');
});
https://groups.google.com/forum/?fromgroups=#!topic/twitter-bootstrap/bhtpERLYCo4