jQuery // var theHeight =窗口高度减去50px?

我得到这样的窗口高度:
var theHeight = "innerHeight" in window 
               ? window.innerHeight
               : document.documentElement.offsetHeight;

我需要一个高度减去50px的var

我怎么做到的?

谢谢!

解决方法

如果您使用jQuery作为标记指示,您可以使用:
var theHeight = $(window).height() - 50;

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...