我有一个动态加载表格的页面。我想检查是否有任何td
s 包含关键字,并根据该关键字更改一些 CSS 样式。
第一次加载时一切正常,但是当表中发生变化时,我的函数不会被触发。
这是我的代码。第一个块运行良好,但第二个不?
$( document ).ready(function() {
$("tr td:contains('*')").each(function(){
$(this).parent("tr").css({ "background-color": "red" });
$(this).parent().children().css({ "background": "inherit" });
});
});
jQuery('body').on('change', '.content', function () {
$("tr td:contains('*')").each(function(){
$(this).parent("tr").css({ "background-color": "red" });
$(this).parent().children().css({ "background": "inherit" });
});
});