我正在尝试检查 div 的内容是否已更新。
$(document).ready(function(){
$('#main').bind('DOMNodeInserted', function() {
alert("Div's content has been updated"); //Should display only once regarless the number of modified elements
});
});
此代码将提醒div 的内容已更新#main中的 div 已更新的 次数
我希望它只提醒一次,只是为了告诉大家,所有元素都已成功更新。请问有什么办法吗?谢谢