0

我有一个在线阅读漫画的网站。

阅读页面的HTML是:

<div id="listimages">
<img src="abc1.jpg" id="image1" />
<img src="abc2.jpg" id="image2" />
<img src="abc3.jpg" id="image3" />
<img src="abc4.jpg" id="image4" />
</div>

我想获取滚动到的图像的 id。例如,当我查看 img abc2.jpg 时,我想获取它的元素 id 是 #image2。

idnow = idnow_getted

请帮助我,谢谢大家!

4

3 回答 3

0

您可以比较窗口的滚动顶部和图像的顶部位置,以获取滚动到的图像的 id。

例如,

$(window).scroll(function() {

var winTop = $(this).scrollTop();
var $imgs = $('img');

$.each($imgs, function(item) {
    if($(item).position().top <= winTop)
         //get id here

});
});
于 2013-03-07T04:12:35.667 回答
0

可能有两种情况,您需要图像的 id 并进行进一步处理,

第一种情况您想在窗口滚动时执行某些操作。在这种情况下,只需在滚动事件上添加一个处理程序。

$(window).scroll(function() {

    var windowTop = $(this).scrollTop(),
        image = $('#listimages').find('img').filter(function(){
            return $(this).offset().top < windowTop+100;
           //i am adding 100 in windowTop as we can consider the the image as cuurent image even if it is little bit below than top of window.
        });


            //now you can directly use image if you want to manipulate it.
            //if you want id you can get it by
          var id=image[0].id //or image.attr('id'); 

    });

第二种情况,如果您想在触发任何事件时执行一些操作。

function currentImg(){
            var windowTop = $(this).scrollTop(),
            image = $('#listimages').find('img').filter(function(){
                return $(this).offset().top < windowTop+100;
             });
           return image[0].id;

}

但是请记住添加事件,例如滚动,鼠标移动会更频繁地执行,因此建议不要使用太多,直到您需要它。

于 2013-03-07T04:41:11.587 回答
-2

只需尝试以下方法,

JavaScript 和 jQuery 部分:

<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#listimages img').mouseover(function() {
   alert(this.id);
});
});
</script>

HTML部分:

<div id="listimages">
<img src="abc1.jpg" id="image1" />
<img src="abc2.jpg" id="image2" />
<img src="abc3.jpg" id="image3" />
<img src="abc4.jpg" id="image4" />
</div>

我认为这可以帮助您解决问题。

于 2013-03-07T04:30:47.140 回答