如何将换行符添加到JQuery弹出框

编程入门 行业动态 更新时间:2024-10-10 11:21:42
本文介绍了如何将换行符添加到JQuery弹出框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

如何在弹出式窗口内容中添加换行符?换行符或换行符均无效.这就是我正在尝试的:

How can I add a line break in my popover content? Neither the line break tag, nor the new line character is working. This is what I'm trying:

$(".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标签应该起作用:

You need to pass the option html: true when you initialize the popover. Then <br /> and other html tags should work:

$(".foo").hover(function () { $(this).popover({ title: "Bar", content: "Line 1 <br /> Line 2 <br /> Line 3", html: true }).popover('show'); }, function () { $(this).popover('hide'); });

groups.google/forum/?fromgroups=# !topic/twitter-bootstrap/bhtpERLYCo4

更多推荐

如何将换行符添加到JQuery弹出框

本文发布于:2023-08-06 11:28:03,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1311972.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:弹出   如何将   换行符   JQuery

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!