当前位置 : 主页 > 网页制作 > JQuery >

在jQuery中为此添加String

来源:互联网 收集:自由互联 发布时间:2021-06-15
如果这是 HTMLDivElement,我该如何避免这样做? $('#' + $(this).id + " p").foo(); 做类似的事情: ($(this) + $( " p")).foo(); $(this).children('p').foo();
如果这是 HTMLDivElement,我该如何避免这样做?

$('#' + $(this).id + " > p").foo();

做类似的事情:

($(this) + $( " > p")).foo();
$(this).children('p').foo();
网友评论