我觉得这个问题的答案会简单得令人尴尬,但它消耗了很多时间,我看不到解决方案。我正在做一个简单的无限滚动功能,需要脚本来识别后加载更多的内容窗口的新高度。该值始终与第一次加载时间相同。我基于编写了这段最新的代码,但它仍然不能工作。有什么想法?
var scrollFunction = function(){
var myTop = jQuery(window).scrollTop();
var myHeight = jQuery(window).height();
if (myTop >= myHeight){
$(
我有以下代码:
<div class="content">
<a href="/profile/Nat's Rare & Raw" class="link-name"><strong>Irene Natalia</strong></a>
Hooray! we'll proceed with the shipping and inform the tracking
我正在为一个剧院网站构建一个jquery幻灯片旋转木马,它被用来显示剧院最近5场演出的标题和相关照片。节目以及为它们上传的照片的URL将从数据库中加载,并插入到下面的结构中:
<div id="slideshow_outercontainer"> <ul id="carousel">
<!-- This is where the <li>s are generated from the database using the photo's url
as a CSSbackground image -->
我需要抓取窗口的高度和jQuery中的滚动偏移量,但是我还没有在jQuery文档或谷歌中找到这一点。我90%确信有一种方法可以访问元素的高度和scrollTop (大概包括窗口),但我只是找不到具体的。我被下面的代码卡住了
var height = $(window).height();
var scrollTop =$(window).scrollTop();