在下文中,我试图跟踪插入到p-msg-class
类中的最后一个元素,但我看到了很多次警报,因为还有其他元素动态插入到.middle-ui,.flt-rt,.content-ht
. 我如何才能只跟踪p-msg-class
动态插入的所有其他 html 并使警报停止
$('.middle-ui,.flt-rt,.content-ht').bind('DOMNodeInserted', function(event) {
if($(this).find(".visitor-msg-cont").last().find(".p-msg-class").length > 0)
{
alert($(this).find('.visitor-msg-cont').last().find('.p-msg-class').last().html());
}
});