html 将表单放在popover中的bootstrap 3中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 将表单放在popover中的bootstrap 3中相关的知识,希望对你有一定的参考价值。

$('#popover').popover({ 
  html : true,
  title: function() {
    return $("#popover-head").html();
  },
  content: function() {
    return $("#popover-content").html();
  }
});
<a href="#" id="popover">the popover link</a>
<div id="popover-head" class="hide">some title</div>
<div id="popover-content" class="hide">
  <form>
    <!-- my form -->
  </form>
</div>

以上是关于html 将表单放在popover中的bootstrap 3中的主要内容,如果未能解决你的问题,请参考以下文章