如何使用jquery获得屏幕的“高度”

我想在屏幕中间设置一些东西

谢谢

$(window).height(); // returns height of browser viewport $(document).height(); // returns height of HTML document 

如此处所述: http : //api.jquery.com/height/

使用响应式网站(查看手机或iPad)

 jQuery(window).height(); // return height of browser viewport jQuery(window).width(); // return width of browser viewport 

很less使用

 jQuery(document).height(); // return height of HTML document jQuery(document).width(); // return width of HTML document 
 $(window).height(); 

要在中间设置任何东西,你可以使用CSS。

 <style> #divCentre { position: absolute; left: 50%; top: 50%; width: 300px; height: 400px; margin-left: -150px; margin-top: -200px; } </style> <div id="divCentre">I am at the centre</div>