gpt4 book ai didi

javascript - 当选择器是一个类时,Jquery 事件不触发

转载 作者:行者123 更新时间:2023-11-28 11:16:32 24 4
gpt4 key购买 nike

我有以下选择器

    jQuery("table[class='google-visualization-table-table']").on("click", "tr", function(){alert('i am here'); }

我正在使用 GOOGLE API 创建表

以下是我的 HTML

<table class="google-visualization-table-table" cellspacing="0">
<tbody>
<tr class="google-visualization-table-tr-head">
<tr class="google-visualization-table-tr-even">
<tr class="google-visualization-table-tr-odd">
<td class="google-visualization-table-td">MONTEFIORE MEDICAL CENTER</td>
<td class="google-visualization-table-td">208604209.00</td>
<td class="google-visualization-table-td">666813000.00</td>
<td class="google-visualization-table-td">68.72</td>
<td class="google-visualization-table-td">31.28</td>
</tr>
<tr class="google-visualization-table-tr-even">
<tr class="google-visualization-table-tr-odd">
</tbody>
</table>

最佳答案

这些元素似乎是由 GOOGLE API 动态生成的。因此将其与文档绑定(bind)

jQuery(document).on("click", "table.google-visualization-table-table tr", function(){
alert('i am here');
});

关于javascript - 当选择器是一个类时,Jquery 事件不触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21021634/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com