如何获取uib-popover-template来显示html片段

时间:2016-03-03 02:16:13

标签: angularjs tooltip

从Angular文档(https://angular-ui.github.io/bootstrap/#/popover)中,我使用uib-popover-template来显示html文件。我想知道是否有办法只展示HTML代码段。

在主页面上有:

<button uib-popover-template="'myTestDoc.html#test1'"  popover-placement="right" class='btn btn-primary'>Help</button>

在myTestDoc.html中:

<div>
  <div id="test1" name="test1">
    some text
  </div>

  <div id="test2" name="test2">
    more text
  </div>
</div>

理想情况下,它应显示<div>内的内容,其中id =&#34; test1&#34;。但是,它显示myTestDoc.html中的所有内容。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

我相信uib-popover-template没有这个功能。你可以做的是创建一个不同的文件只是文件片段,或者,因为是少量的代码,将它作为一个字符串传递(尽管尝试使其漂亮)