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.
我正在使用$(window).heightin jquery 并使用 firebug 打印出该值,它说该值是8而不是800.
$(window).height
8
800
$(window).width工作正常。有什么想法可以解决这个问题。
$(window).width
使用height(), 和width()函数,而不是属性。
height()
width()
以下是一些选项:
尝试关闭 Firebug 并改用警告框。可能是 Firebug 导致您的窗口缩小。还可以尝试将 Firebug 最大化到一个新窗口中
我建议确保您的 jQuery 版本是最新的。或者,如果您使用的是 1.9 版,请降级到 1.8。
如果一切都失败了,你可以求助于普通的旧 JavaScript:window.innerWidth和window.innerHeight
window.innerWidth
window.innerHeight