开发者

Accessing child elements in a function (jQuery)

开发者 https://www.devze.com 2022-12-08 19:28 出处:网络
jQuery 开发者_运维技巧$(\"#myID\").each(function() { $(this).dosomething; }); HTML: <div id=\"myID\">

jQuery

开发者_运维技巧$("#myID").each(function() {
  $(this).dosomething;
});

HTML:

<div id="myID">
 <div class="myClass">content</div>
</div>

How do I access myClass from the function? this>myClass ?


$(this).children(".myClass")
0

精彩评论

暂无评论...
验证码 换一张
取 消