我的经验水平 - 我正在制作一个自定义滑块,这是我第一次使用 jQuery,但我认为我对 html、css 和 jquery 一起做什么有很好的处理,但是我的菜鸟仍然在继续。
我的问题 - 我已经标记了 17 个 div,我想删除 img 标签:
<div class="slide" id="zero">
<h2>April 1, 2011</h2>
<img src="img/1_april12011.png"/><p>Lorem Ipsum</p>
</div>
<div class="slide" id="one">
<h2>April 2011</h2>
<img src="img/2_april2011.png"/> <p>Lorem Ipsum</p>
</div>
<div class="slide" id="two">
<h2>August 2011</h2>
<img src="img/3_aug2011.png"/><p>Lorem Ipsum</p>
</div>
通过使用 .detach() 和以下 jQuery,我可以很容易地做到这一点:
$('.slide').delegate('click', function(){
if(imageToAttach == null){
attachLocation = $(this).find('id');
imageToAttach = $(this).find('img').detach();
console.log
}else{
$(imageToAttach).appendTo(attachLocation);
console.log('trying to append ' + imageToAttach + ' to ' + attachLocation);
attachLocation = $(this).find('id');
imageToAttach = $(this).find('img').detach();
console.log('detached ' + imageToAttach);
}});
我正在使用 var = imageToAttach 和 attachLocation 来跟踪删除了哪些图像以及从何处删除了它,因此我可以在需要时再次将其附加到该特定 div (单击另一个图像或左右控件时)点击)所以如果我能得到这个——http: //jsfiddle.net/lorenzo_vm/nbF8d/3/——jsfiddle工作,那么我相信我可以做我想做的事。
几个小时后的研究和摆弄
我想我知道我想做,我将使用 .hide() 和 .show(),但我仍然很好奇上面提到的小提琴中发生了什么......也就是说,我该怎么做当我单击另一个 div 时,让 img 重新插入到它们所在的 div 中......如果你,善良的 stackoverflow 用户,不介意,你能告诉我一个更简单的方法来分配 div 到某种数组,而不是使用 id="zero" id="one" 等。
像这样的东西?
var slides = $('.slide');
var numberOfSlides = slides.length;
var slideArray[] = null;
我会只使用for循环将slides.length的索引分配给数组中的每个点吗?
for( var i=0;i<=numberOfSlides;i++){
slideArray[i] = ?;
}
或者 var 幻灯片是一个数组?我有点困惑。
非常感谢!
- 迈克尔