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.
我有显示视口宽度和高度的代码,但没有显示实际窗口大小。
知道如何获得窗口大小吗?
不,您无法获得浏览器面板的大小。
您可以获得的最接近的结果是,如果用户最大化了窗口,您可以取屏幕大小并减去窗口大小,这样您就可以得到工具栏的大小。
我不确定,但我认为你想要什么文件width和height
width
height
尝试使用$(document).height()and$(document).width()获取页面宽度和高度。
$(document).height()
$(document).width()
演示:http: //jsfiddle.net/JvGZr/2/