如何在弹出框内容中添加换行符?换行标记和换行符都不起作用。这就是我正在尝试的:
$(".foo").hover(function () {
$(this).popover({
title: "Bar",
content: "Line 1 <br /> Line 2 \n Line 3"
}).popover('show');
}, function () {
$(this).popover('hide');
});
如何在弹出框内容中添加换行符?换行标记和换行符都不起作用。这就是我正在尝试的:
$(".foo").hover(function () {
$(this).popover({
title: "Bar",
content: "Line 1 <br /> Line 2 \n Line 3"
}).popover('show');
}, function () {
$(this).popover('hide');
});
html: true
初始化弹出框时需要传递选项。然后<br />
和其他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