带有自定义滚动条的 jQuery UI Accordion
我正在玩 jQuery UI Accordion,我正在尝试使用 jQuery UI Slider 作为自定义滚动条(不要问我为什么,我只是在乱搞)。我已将每个手风琴的最大高度设置为 500px。
然后我想循环每个手风琴并检查高度是否超过 500px。如果是,我会将滑块作为滚动条放入。然而,在加载时,手风琴会关闭,并且它们的高度返回为 0。
$('#scroller').height();
有谁知道如何获取加载时的高度?
I am playing around with jQuery UI Accordion and i am trying to use jQuery UI Slider as a custom scrollbar (don't ask me why, i am just messing around). I have set the max-height of each accordion to 500px.
I then want to loop over every accordion and check if the height is over 500px. If it is i will put in the slider as a scrollbar. However on load the accordions are closed and their height returns as 0.
$('#scroller').height();
Does anyone know how to get the height on load??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不将
$('#scroller').height();
放入展开手风琴的函数中?这样您始终可以获得最新信息。Why don't you put
$('#scroller').height();
inside the function that expands the accordian? That way you always get the up-to-date info.