我想在屏幕中间设置一些东西
谢谢
$(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
很少使用
jQuery(document).height(); // return height of HTML document jQuery(document).width(); // return width of HTML document