如果这是 HTMLDivElement,我该如何避免这样做? $('#' + $(this).id + " p").foo(); 做类似的事情: ($(this) + $( " p")).foo(); $(this).children('p').foo();
$('#' + $(this).id + " > p").foo();
做类似的事情:
($(this) + $( " > p")).foo();
$(this).children('p').foo();
$('#' + $(this).id + " > p").foo();
做类似的事情:
($(this) + $( " > p")).foo();
$(this).children('p').foo();