How to alert ,when div content changes using jquery

人盡茶涼 提交于 2019-12-21 05:50:13

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!