表td标记

时间:2015-08-06 11:13:44

标签: javascript html css angularjs

这就是我所拥有的,它运作良好:

    <div style="padding:5px; border:solid 1px gray; width: 30px; height: 20px;" role="button" data-toggle="popover" data-content="test">
        <div class="tv-button"></div>
    </div>

但如果我这样做:

<td>
        <div style="padding:5px; border:solid 1px gray; width: 30px; height: 20px;" role="button" data-toggle="popover" data-content="test">
            <div class="tv-button"></div>
        </div>
</td>

它停止了工作。

这就是我在script中所拥有的:

    $("[data-toggle=popover]")
        .popover({
            placement: "top",
            trigger: "hover",
            html: true
    });

有谁知道这是什么问题?

提前致谢。

1 个答案:

答案 0 :(得分:0)

我意识到如果我在&#34; tr&#34;上进行ng-repeat,它就不起作用了。标记并重复许多&#34; td&#34;标签,在这种情况下它不起作用,没有ng-repeat它,我会创建JSfiddle,但因为我有相当多的HTML,我不想打扰你阅读...你们有没有得到任何结论是什么?