AngularJS的AngularUI引导程序弹出窗口问题

问题描述 投票:0回答:1

我正在尝试使用Bootstrap和angularJS实现弹出功能,但弹出窗口似乎不起作用,我也没有收到任何错误。任何帮助将不胜感激

<button popover-template="'popover.html'"
        popover-placement="top"
        popover-trigger="click"
        type="button"
        class="btn btn-default">
  Mouse over me
</button>

我添加了ngAnimate和ui.bootstrap作为我的angular应用程序的依赖项。这是popover.html

的代码
<label class="Label">
    test
</label>

它不会在单击时自动创建弹出窗口,也不会创建错误消息。

angularjs angular-ui-bootstrap popover
1个回答
0
投票

指令的名称为uib-popover-template

<button ̶p̶o̶p̶o̶v̶e̶r̶-̶t̶e̶m̶p̶l̶a̶t̶e̶=̶"̶'̶p̶o̶p̶o̶v̶e̶r̶.̶h̶t̶m̶l̶'̶"̶
        uib-popover-template="'popover.html'"
        popover-placement="top"
        popover-trigger="click"
        type="button"
        class="btn btn-default">
  Mouse over me
</button>

有关更多信息,请参阅

有关更多信息,请参阅

© www.soinside.com 2019 - 2024. All rights reserved.