0

我正在尝试将引导弹出窗口用于动态生成的表。在表中有一个列名users,它有每个项目的用户数。

例如:表结构

item name | adress | users 
bla..blaa | bla..  |   4 

现在我需要在点击时显示一个包含用户信息的弹出窗口4

用户列 HTML 是这样的:

<a href='javascript:void(0);' data-rel='popover' title='' data-content='Heads up! This alert needs your attention, but its not super important.' class='badge badge-inverse popup'>4</a>

这就是我在查询中尝试的方式:

$('#view_table').find('[data-rel=popover]').popover({html:true});

但是当我在用户列下单击时,4它不会触发 pupover。同时,我检查了表格外的相同 HTML,我可以让它工作。

对它的任何想法在表内都行不通。

希望有人可以帮助我。

4

1 回答 1

0

你在写你的

$('#view_table').find('[data-rel=popover]').popover({html:true});

代码之后,将表格的 HTML 绑定到 DOM,或者之前。

尝试编写上面的代码,在 Table 被添加到 DOM 之后

于 2015-12-01T06:27:56.303 回答