gpt4 book ai didi

jquery - 计算任何标签的第一级子元素

转载 作者:行者123 更新时间:2023-12-01 06:47:02 27 4
gpt4 key购买 nike

$('.btns .next').click(function(){
if ($(this).hasClass("di")) {what = "div";}
else{what = "img";}
...
var xlen = $(c).find('>' + what).length;
});

这对 div 中的 first-level-children 进行计数,它可以工作,但有没有办法说:

var xlen = $(c).find('> whatever_is_first_child_of_c' ).length;

所以,无论第一个 child 是 imgdivp 或任何东西 - 我需要计算它们。

最佳答案

试试这个:

$('.wrapper >') // where wrapper is container or parent element

关于jquery - 计算任何标签的第一级子元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23447141/

27 4 0