如何获取嵌套 div 的 ID 来构建 var

发布于 2024-12-13 18:11:48 字数 553 浏览 0 评论 0原文

我正在尝试构建一个在函数中使用的 var 。该函数需要在具有单独 ID 的多个 div 上运行。本质上,var 将获取每个 div 的 ID 并基于该 ID 运行该函数。我只是无法让它正常工作。

这是我的标记:

<div class="group">
    <div id="element1" class="element">Stuff</div>
    <div id="element2" class="element">Stuff</div>
</div>

这是我的 jQuery var“尝试”:)

var elementVar = $('.group').find('.element')this.attr('id');

所以本质上,将像下面一样运行,以便该函数在每个 div id 上运行

$(elementVar).click(function(){ ...

任何帮助将不胜感激!

I'm trying to build a var to be used in a function. The function needs to run on multiple div's that have separate ID's. Essentially, the var would be grabbing the ID of each div and running the function based on that. I just can't get it working correctly.

Here's my markup:

<div class="group">
    <div id="element1" class="element">Stuff</div>
    <div id="element2" class="element">Stuff</div>
</div>

Here's my jQuery var "attempt" :)

var elementVar = $('.group').find('.element')this.attr('id');

So essentially, will be ran like the following, so that the function runs on each div id

$(elementVar).click(function(){ ...

Any help would be hugely appreciated!

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

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

发布评论

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

评论(4

乖乖 2024-12-20 18:11:48
$('.group .element').click(function(){
id = $(this).attr('id');
});

但我推荐这样的东西。它为您提供干净的数据。

<div id="element2" class="element" data-id="2">Stuff</div>
$('.group .element').click(function(){
id = $(this).attr('data-id');
});
$('.group .element').click(function(){
id = $(this).attr('id');
});

but i recommend something like this. It gives you the clean data.

<div id="element2" class="element" data-id="2">Stuff</div>
$('.group .element').click(function(){
id = $(this).attr('data-id');
});
吹泡泡o 2024-12-20 18:11:48

这应该可以解决问题:

$('.group div.element').click(function() {
   $(this).....;
});

This should do the trick:

$('.group div.element').click(function() {
   $(this).....;
});
原来是傀儡 2024-12-20 18:11:48

是不是很简单

$('.element').click(function(){
   id = $(this).attr('id');
});

Isn't it just simple

$('.element').click(function(){
   id = $(this).attr('id');
});
浪漫人生路 2024-12-20 18:11:48

只需使用这个即可:

$(".group").children().each(function(){});

这会获取带有 group 类的 div 的所有子级,并将 each() jQuery 函数中的函数应用于它们。

因此,要在单击时触发函数:

$(".group").children().each(function(){
  $(this).click(function(){
    // click event here
  });
});

另外,只要所有 div 都有类,只需选择该类即可:

$(".element").each(function(){
  $(this).click(function(){
    // click event here
  });
});

但您可能只添加了类,因此您的方法就可以工作。如果您不打算添加类,那么第一种方法是您的最佳选择。

更多关于 children(); 此处 以及更多关于 each( ); 此处

Just use this:

$(".group").children().each(function(){});

This gets all the children of the div with class group and applies the function within the each() jQuery function to them.

So to trigger a function on click:

$(".group").children().each(function(){
  $(this).click(function(){
    // click event here
  });
});

Also, as long as all the divs will have classes, just select the class:

$(".element").each(function(){
  $(this).click(function(){
    // click event here
  });
});

But you probably only added classes so your method would work. If you're not going to add classes, then the first method is your best option.

More on children(); here and more on each(); here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文