0

我在计算 div 中的图像数量时遇到问题。

例如 1/4、2/4、3/4、4/4

这是我试图弄清楚的小代码

//count image
var currentNum = $(this).iniShow() + 1;
var count = $(this).closest('.slideshow').find('img:first').length;
var item = $(this).closest('.slideshow').attr('id');
       $('.' + item ).html(currentNum + ' of ' + count);

到目前为止,这是我的 html 代码:

<!DOCTYPE html> 
<html> 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">   </script>
</head>
<style>
.slideshow img { display: none; cursor: pointer; }
</style>
<script type="text/javascript">
jQuery(function($){
//previous slide
$('.slideshow .prev').click(function() {
    prevSlide($(this).closest('.slideshow').find('.slides'));
});
//next slide
$('.slideshow .next, .slideshow img,').click(function() {
    nextSlide($(this).closest('.slideshow').find('.slides'));
});
//initialize show
iniShow();
function iniShow() {
    // show first slide with caption
    $('.slideshow').each(function() {
        showSlide($(this).find('.slides'));
    });
}
// move previous slide 
function prevSlide($slides) {
    $slides.find('img:last').prependTo($slides);
    showSlide($slides);
}
// move next slide 
function nextSlide($slides) {
    $slides.find('img:first').appendTo($slides);
    showSlide($slides);
}
// show slide with caption
function showSlide($slides) {
    var $nextSlide = $slides.find('img:first');
    //hide (reset) all slides
    $slides.find('img').hide();
    //fade in next slide
    $nextSlide.fadeIn(500);
    //show caption
    $('#caption').text($nextSlide[0].alt);
    //count image
    var currentNum = $(this).iniShow() + 1;
    var count = $(this).closest('.slideshow').find('img').length;
    $('#count').html(currentNum + ' of ' + count);
    }
});
</script>
<body>
<div class="slideshow">
<div class="slides">
    <img src="image/1a.jpg" width="500" height="500" alt="Caption 1 Image is ..." />
    <img src="image/2a.jpg" width="500" height="500" alt="Caption 2 Image is ..." />
    <img src="image/3a.jpg" width="500" height="500" alt="Caption 3 Image is ..." />
    <img src="image/4a.jpg" width="500" height="500" alt="Caption 4 Image is ..." />
</div>
<p id="caption"></p> / <p id="count"></p>
<div class="controls">
<a class="prev" href="javascript:void(0);">Previous</a> -
<a class="next" href="javascript:void(0);">Next</a>
</div>
</div>
</body>
</html>

任何建议将不胜感激。我也想知道我是否接近解决这个问题。谢谢。

4

4 回答 4

4

你似乎在使用这个

.find('img:first').length;

因此,如果其中有图像,计数将始终为1 ..

试试这个

var count = $slides.closest('.slideshow').find('img').length;

此外,在当前函数上下文中没有任何意义.. 将其替换为$slides

于 2012-10-11T19:16:08.823 回答
1

您可以直接使用 count 作为选择器。jsfiddle 的变化

为了

var item = $(this).closest('.slideshow').attr('id');
       $('.' + item ).html(currentNum + ' of ' + count);

我相信你想用 id 在 div 中显示你的计数count。对于 id,您应该使用 # 而不是 .(用于类 selectopr)。

   $('#count').html(currentNum + ' of ' + count);

修改后的代码:

var currentNum = $(this).iniShow() + 1;
var count = $(this).closest('.slideshow').find('img').length;
       $('#count').html(currentNum + ' of ' + count);
于 2012-10-11T19:13:25.687 回答
0

语法必须是:

var count = $('div.myDiv').find('img').size();

所以在你的情况下,它将是:

var count = $(this).closest('.slideshow').find('img').size();
于 2012-10-11T19:18:52.540 回答
0

你可以试试这个:

var count = $(".slides > img").size();

它更好地使用id,而不是class你的情况。所以你的div会看起来像这样:

  <div id="slides">
    <img src="image/1a.jpg" width="500" height="500" alt="Caption 1 Image is ..." />
    <img src="image/2a.jpg" width="500" height="500" alt="Caption 2 Image is ..." />
    <img src="image/3a.jpg" width="500" height="500" alt="Caption 3 Image is ..." />
    <img src="image/4a.jpg" width="500" height="500" alt="Caption 4 Image is ..." />
  </div>
...

和你的jQuery代码:

var count = $("#slides > img").size();

参见示例:jsfiddle

于 2012-10-11T19:21:04.130 回答