本文主要為大家分享一篇BootStrap自訂popover,點擊區域隱藏功能的實現方法,具有很好的參考價值,希望對大家有所幫助。一起跟著小編過來看看吧,希望能幫助大家。
當用bootstrap時,經常需要在某個地方添加幫助按鈕,點擊或滑鼠懸浮時,提示幫助信息,然而,bt給我們提供的方法裡貌似沒有,如果有哪位大神知道bootstrap有的可以在留言區留言哦。
程式碼如下
之前的按鈕必須定義class為pop;
$(function(){ $(".pop").popover({placement:'right', trigger:'manual', delay: {show: 10, hide: 10}, html: true, title: function () { return $("#src-title").html(); }, content: function () { return $("#data-content").html(); // 把content变成html }}); $('body').click(function (event) { var target = $(event.target); // 判断自己当前点击的内容 if (!target.hasClass('popover') && !target.hasClass('pop') && !target.hasClass('popover-content') && !target.hasClass('popover-title') && !target.hasClass('arrow')) { $('.pop').popover('hide'); // 当点击body的非弹出框相关的内容的时候,关闭所有popover } }); $(".pop").click(function (event) { $('.pop').popover('hide'); // 当点击一个按钮的时候把其他的所有内容先关闭。 $(this).popover('toggle'); // 然后只把自己打开。 }); });
相關推薦:
BOOtstrap源碼分析之tooltip、popover_html/css_WEB-ITnose
Bootstrap每天必學之彈出框(Popover)插件_javascript技巧
BootStrap的彈出框(Popover)支援滑鼠移到彈出層上彈跳視窗層不隱藏的原因及解決方案_javascript技巧
以上是BootStrap自訂popover實現點擊區域隱藏功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!