Bootstrap中的弹出框插件popover.js中的参数title、content不能使用html代码

发布于 2022-08-29 16:48:17 字数 72 浏览 14 评论 0

Bootstrap中的弹出框插件popover.js中的参数title、content都不能使用html代码,有什么办法解决?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

拔了角的鹿 2022-09-05 16:48:17

可以自定义啊

<div id="pop_content" class="popover fade right">
                <div class="arrow"></div>
                 <h2 class="popover-title">自定义HTML</h2>
                 <div class="popover-content">自定义HTML</div>
              </div>

<script>    
$(".pop").each(function() {
  var $pElem = $(this);
  $pElem.popover({
    html: true,
    trigger: "manual",
    title: getPopoverTitle($pElem.attr("id")),
    content: getPopoverContent($pElem.attr("id")),
    container: 'body',
    animation: false
  });
}).on("mouseenter",

function() {
  var _this = this;
  $(this).popover("show");
  console.log("mouse entered");
  $(".popover").on("mouseleave",
  function() {
    $(_this).popover('hide');
  });
}).on("mouseleave",

function() {
  var _this = this;
  setTimeout(function() {
    if (!$(".popover:hover").length) {
      $(_this).popover("hide");
    }
  },
  100);
});

function getPopoverTitle(target) {
  return $("#" + target + "_content > h2.popover-title").html();
};

function getPopoverContent(target) {
  return $("#" + target + "_content > div.popover-content").html();
};
</script>
橘虞初梦 2022-09-05 16:48:17

加上 data-html="true",然后
换行

无风消散 2022-09-05 16:48:17

<button type="button" class="btn btn-lg btn-danger" data-toggle="popover" title="Popover title" data-html="true" data-content="<div>百度</div>">点我弹出/隐藏弹出框</button>

加上 data-html="true"即可,
或者js初始化时加上 html:"true"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文