问题
I want to give a alert message,when div content changes.
Is there any listener provided by jquery api for div element?
回答1:
Bind the dom modification events -
$(document).ready(function(){
$('#test_div').bind('DOMNodeInserted DOMSubtreeModified DOMNodeRemoved', function(event) {
alert('Changed');
})
})
来源:https://stackoverflow.com/questions/7672529/how-to-alert-when-div-content-changes-using-jquery