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).scroll(function() { if ($(window).height() < 100) { $(".mobnav").slideUp(10); } });
为什么这不应该工作的任何理由?一些帮助将不胜感激。
干杯
我认为您正在寻找scrollTop方法。该height方法将返回实际的窗口高度,只有在调整窗口大小时才会改变。
scrollTop
height
更多信息:http ://api.jquery.com/scrollTop/