需要设置数字
的图像IDvar 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”。
答案 0 :(得分:1)
不知道要求什么,但这是吗?:
var count = 0;
$("img").each(function(){
//start 0, then 1, then 2..
$(this).attr("rel",count++);
});