检查Div的内容是否已更新

时间:2013-08-06 15:00:19

标签: jquery

我正在尝试检查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的内容已更新 div内部的时间 #main 已更新

我希望它只提醒一次,只是为了说明所有元素都已成功更新。 有什么方法可以吗?感谢

1 个答案:

答案 0 :(得分:4)

使用jQuery's .one

document).ready(function(){
  $('#main').one('DOMNodeInserted', function() {
    alert("Div's content has been updated"); //Should display only once regarless the number of modified elements
  });
});

Here's a demo