jquery 对于每个包含...的类

发布于 2024-10-12 23:10:32 字数 1071 浏览 0 评论 0原文

我有未知数量的唯一列 div:

 <div class="columns-1"><div class="left"></div><div class="right"></div></div>
 <div class="columns-2"><div class="left"></div><div class="right"></div></div>
 <div class="columns-3"><div class="left"></div><div class="right"></div></div>

我想为每个列做一些事情。

应用程序:

  function equalHeight(group) {
  tallest = 0;
  group.each(function() {
  thisHeight = $(this).height();
  if(thisHeight > tallest) {
     tallest = thisHeight;
  }
  });
  group.height(tallest);
  }

允许为包含的 columns-div 内的左侧和右侧 div 的所有列赋予相同的高度。

  $(document).ready(function() {
  equalHeight($(".columns-X div"));
  });

因此,需要对 columns-1、columns-2 和 columns-3 重复后一部分,

我在这里找到了一些如何检查部分类名的示例,但这些示例将立即处理所有列 div 类,而不是每次,导致整个网页中所有左右 div 的高度相等。 使用 jQuery 查找元素的动态类名

I have a unknown number of unique column divs :

 <div class="columns-1"><div class="left"></div><div class="right"></div></div>
 <div class="columns-2"><div class="left"></div><div class="right"></div></div>
 <div class="columns-3"><div class="left"></div><div class="right"></div></div>

I want to do for each columns- class something.

Application :

  function equalHeight(group) {
  tallest = 0;
  group.each(function() {
  thisHeight = $(this).height();
  if(thisHeight > tallest) {
     tallest = thisHeight;
  }
  });
  group.height(tallest);
  }

Which allows to give all columns of the left and right divs within the containing columns- div the same height.

  $(document).ready(function() {
  equalHeight($(".columns-X div"));
  });

So the latter part needs to be repeated for columns-1, columns-2 and columns-3

I found here some examples how to check on part of the classname but these examples would address all columns div classes at once, instead of each a time, resulting in equal heights for all left and right divs in the whole webpage. Find dynamic classname of element with jQuery

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

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

发布评论

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

评论(1

画离情绘悲伤 2024-10-19 23:10:32

试试这个:

$("div[class^=columns-]").each(
    function(){
        equalHeight($(this).find("div"));
    }
)

Try this:

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