我正在使用Firestore网络应用程序。我在其中用
在表中添加新的原始文件 $("table").append(row);.
我有以下功能不适用于新添加的原始文件。 (使用旧的Raw不会有任何问题。)
$(document).ready(function() {
$("#mytable td").click(function(event) {
alert($(this).text());
$(this).html('y');
});
});
答案 0 :(得分:1)
请您试一下。
$(document).ready(function() {
$(document).on("click","#mytable td",function(event) {
alert($(this).text());
$(this).html('y');
});
});