如果我在下面运行:
$(document).bind('DOMNodeInserted', function(){
$('.new', this).hide();
});
它会运行正常,它会隐藏 .new div。但我需要执行以下操作:
$(document).bind('DOMNodeInserted', function(){
// if class .new exists
// do something to the other elements e.g (body, #div, h1, h2, etc) not to .new class
});
非常感谢