我正在尝试检查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 已更新
我希望它只提醒一次,只是为了说明所有元素都已成功更新。 有什么方法可以吗?感谢
答案 0 :(得分:4)
document).ready(function(){
$('#main').one('DOMNodeInserted', function() {
alert("Div's content has been updated"); //Should display only once regarless the number of modified elements
});
});