number = parseInt(number);需要不使用rel属性编号

时间:2013-04-06 07:00:26

标签: javascript jquery html5

需要设置数字

的图像ID
var number = $(this).attr('rel');
    number = parseInt(number);
    $('#carousel .slides li:nth-child(' + (number + 1) + ')').click();
    $('#carousel').flexslider({

我的意思是替换number = parseInt(number);到图像的id

             文本              

<article class="col img_prev2">
  <img src="img/slideshow/slideshow2.jpg" alt="#img2" rel="1" class="thumb_main_page">
   <h5>Text</h5>
</article>

On上面的rel属性从0(rel =“0”)开始,所以我需要将它作为例如slideshow1.jpg设置为“0”。

1 个答案:

答案 0 :(得分:1)

不知道要求什么,但这是吗?:

var count = 0;
$("img").each(function(){
   //start 0, then 1, then 2..
   $(this).attr("rel",count++); 
});

http://jsfiddle.net/jA8CW/