Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在这个 div 上自动设置了高度:
div#new-menu-lower ul li ul li ul
我需要一些 jquery 来将相同的高度应用于以下 div:
div#new-menu-lower ul li ul
这甚至可能吗?如果你能演示一个很棒的例子。
提前致谢!
试试这个:
$('div#new-menu-lower ul li ul').height($('div#new-menu-lower ul li ul li ul').height())
看演示