jquery 手风琴高度
我有两个手风琴。
手风琴 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从 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 useheightStyle: "content"
See an example:
http://jqueryui.com/accordion/#no-auto-height
你应该使用
它会根据你的内容设置高度。并且不会使用空格作为高度。
you should use
It will set height according to your content. and will not use blank space as height.
尝试将
autoHeight
属性设置为false
。请参阅http://jqueryui.com/demos/accordion/#options。Try setting the
autoHeight
property tofalse
. See http://jqueryui.com/demos/accordion/#options.