是否有一個函數來檢測是否已經對DOM進行了新的元素注入? 而不是我的Ajax調用後不斷地檢查,看看是否有注入像這樣新的圖像:jquery檢測元素注入
$.ajax({
...
...
success: function(data) {
$('.content').replaceWith(data);
if ($(data).find('img').length) alert('New images found!');
}
});
我一直希望有一個功能,在那裏存在,檢查是否有新的圖片添加到DOM。例如:
$('img').injected(function() {
console.log('Found new images: ' + this);
});
可能重複:http://stackoverflow.com/questions/4765768/jquery-run-a-function-when-dom-changes – PeterFour
可能重複:http://stackoverflow.com/questions/1091661/ detect-element-content-changes-with-jquery – slinky2000