jquery 手风琴高度

发布于 2024-11-15 17:07:04 字数 192 浏览 2 评论 0原文

我有两个手风琴。

手风琴 1:路由器信息(包含 网格路由器)

手风琴 2:UNC 信息(包含 网格UNC)

如果 gridRouter 包含 2 条记录,gridUNC 包含 30 条记录,则手风琴 1 占用 30 条记录的空间(不是 2 条记录)

I have two accordion.

Accordion 1 : Router Info(contains
gridRouter)

Accordion 2 : UNC Info(contains
gridUNC)

If the gridRouter contains 2 records and gridUNC contains 30 records, the accordion 1 takes space for 30 records (not for 2 records)

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

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

发布评论

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

评论(3

请止步禁区 2024-11-22 17:07:04

从 jQuery UI 1.10 开始,'autoHeight' 属性已被弃用。要在新版本中达到相同的效果,请使用 heightStyle: "content"

请参阅示例:
http://jqueryui.com/accordion/#no-auto-height

As of jQuery UI 1.10 the 'autoHeight' attribute has been deprecated. To achieve the same effect in the new version use heightStyle: "content"

See an example:
http://jqueryui.com/accordion/#no-auto-height

尾戒 2024-11-22 17:07:04

你应该使用

$("#accordion").accordion({ 

heightStyle: "content" 

});

它会根据你的内容设置高度。并且不会使用空格作为高度。

you should use

$("#accordion").accordion({ 

heightStyle: "content" 

});

It will set height according to your content. and will not use blank space as height.

谷夏 2024-11-22 17:07:04

尝试将 autoHeight 属性设置为 false。请参阅http://jqueryui.com/demos/accordion/#options

Try setting the autoHeight property to false. See http://jqueryui.com/demos/accordion/#options.

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