js
$("#test").bind('DOMNodeInserted', function(e) {
// 某些操作
});
//监听某个元素里移除元素的事件
$("#test").bind('DOMNodeRemoved', function(e) {
// 某些操作
});