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 的大小与窗口高度相同,问题是 - div 从 mysql 表加载内容,因此它会更改每个页面加载,以及设置它的 jquery 函数页面完成加载后触发高度。
有什么解决办法吗? 提前谢谢。
position:fixed一种解决方案是在 CSS中创建 div 。
position:fixed
然后使用jquery:
$(document).ready(function(){ var w = $(window).height(); $('#leftnav').css('height',w + 'px'); });
这是假设很多。更多信息总是有帮助的。