jqueryouterwidth子菜单项

发布于 2024-09-03 17:56:19 字数 391 浏览 3 评论 0原文

我正在寻找一种方法来计算 de 2 级项目的总宽度并将其放入 ul 中。 我看过一些jquery 的想法,例如outerWidth 和.lengt,但无法弄清楚。

提前致谢

    $('#menu li:has(ul)  ul').each(function()

<ul>
 <li>level 1</li>
 <li>
  <ul style="widht:??;">
   <li>level 2</li>
   <li>level 2</li>
  </ul>
 </li>
 <li>level 1</li>
</ul>

i'm looking for a way to calculate the total width of de level 2 items and put it in the ul.
I have looked at some jquery thinks like outerWidth and .lengt but can't figure it out.

thanks in advance

    $('#menu li:has(ul)  ul').each(function()

<ul>
 <li>level 1</li>
 <li>
  <ul style="widht:??;">
   <li>level 2</li>
   <li>level 2</li>
  </ul>
 </li>
 <li>level 1</li>
</ul>

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

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

发布评论

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

评论(1

往日 2024-09-10 17:56:19

jQuery 的 width() 方法将为您提供元素的计算宽度:

$(function(){
  $('#menu li:has("ul")').each(function(){
    alert($(this).width());
  });
});

获取当前计算的宽度
匹配集合中的第一个元素
元素。

http://api.jquery.com/width/

替代文字
(来源:jquery.com

The width() method of jQuery will give you the calculated width of an element:

$(function(){
  $('#menu li:has("ul")').each(function(){
    alert($(this).width());
  });
});

Get the current computed width for the
first element in the set of matched
elements.

http://api.jquery.com/width/

alt text
(source: jquery.com)

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