非文本标签onchange事件



var title = $('#title');//the element I want to monitor
title.bind('DOMNodeInserted', function(e) {
alert('element now contains: ' + $(e.target).html());
});

原文地址:https://www.cnblogs.com/KMException/p/7200534.html