jquery 选择器

发布于 2024-10-03 21:25:27 字数 74 浏览 1 评论 0原文

我正在制作一个 jquery 插件。

给你一个包含多个 div 的对象。

有没有办法选择第三个子分区?

I am making a jquery plugin.

You are given an object which contains several divs.

is there anyway to select the say, 3rd child div?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

梦里寻她 2024-10-10 21:25:27

请参阅 .eq - 请记住它是基于 0 的,

例如包含元素列表的对象中的第三个 div

$someObject.find('div:eq(2)')

See .eq - remember it is 0 based

e.g for the third div in an object containing a list of elements

$someObject.find('div:eq(2)')
渡你暖光 2024-10-10 21:25:27

.get() 一个从零开始的整数,指示要检索的元素。

($('div').get(3));

.get() A zero-based integer indicating which element to retrieve.

($('div').get(3));
月亮坠入山谷 2024-10-10 21:25:27

选择第三个div:

$('div').eq(2)

Select the third div:

$('div').eq(2)
錯遇了你 2024-10-10 21:25:27

你可以给他们一个类名并使用每个或简单地选择div,然后计算你的选择

var n = 0    
$("div div").each(function() {
      n++;
      if(n == 3){
            $(this).html("do your thing");
      }
});

you can give them a className and use each or simple select the div, and count your selections

var n = 0    
$("div div").each(function() {
      n++;
      if(n == 3){
            $(this).html("do your thing");
      }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文