因为事件仅附加到现有元素。
您应该将其更改为:
$("#tableId").on("click", ".activeAccount", function(){ // your pre goes here});在jQuery.on文档中阅读更多内容。

因为事件仅附加到现有元素。
您应该将其更改为:
$("#tableId").on("click", ".activeAccount", function(){ // your pre goes here});在jQuery.on文档中阅读更多内容。