轮播的附加功能
我正在尝试向轮播添加附加功能。轮播的默认行为是左右滚动,这很好。
我真正想通过这个轮播实现的是,当用户单击列表中的项目时,在轮播正上方的 div 中显示列表的内容。但使用我当前的代码,似乎所有列表项都被克隆并插入到内容类中。此外,一旦用户单击列表,它应该替换内容类中已存在的项目。
<div class="content">
</div>
<div class="carousel">
<ul>
<li><a href="#"><img src="test1.jpg" alt="" /><em>Excepteur sing occaecat cupidatat</em></a></li>
<li><a href="#"><img src="test2.jpg" alt="" /><em>Excepteur sing oc</em></a></li>
<li><a href="#"><img src="test3.jpg" alt=""/><em>Excepteur sing oc</em></a></li>
<li><a href="#"><img src="test4.jpg" alt="" /><em>Excepteur sing occaecat</em></a></li>
<li><a href="#"><img src="test5.jpg" alt="" /><em>Excepteur sing</em></a></li>
</ul>
</div>
$(function() {
$('.carousel ul li').click(function() {
$(this).addClass('current').siblings().removeClass('current');
$('current li').clone().appendTo('.content');
});
});
I'm trying to add aditional functionality to a carousel. The default behaviour of the carousel is to scroll left and right which is fine.
What i really want to achieve with this carousel is to show the content of the list in a div placed right above the carousel as the user clicks on an item in the list. But with my current code, it seems like all the list items are cloned and inserted to the content class. Also, once a user clicks on a list, it should replace the items already existing in the content class.
<div class="content">
</div>
<div class="carousel">
<ul>
<li><a href="#"><img src="test1.jpg" alt="" /><em>Excepteur sing occaecat cupidatat</em></a></li>
<li><a href="#"><img src="test2.jpg" alt="" /><em>Excepteur sing oc</em></a></li>
<li><a href="#"><img src="test3.jpg" alt=""/><em>Excepteur sing oc</em></a></li>
<li><a href="#"><img src="test4.jpg" alt="" /><em>Excepteur sing occaecat</em></a></li>
<li><a href="#"><img src="test5.jpg" alt="" /><em>Excepteur sing</em></a></li>
</ul>
</div>
$(function() {
$('.carousel ul li').click(function() {
$(this).addClass('current').siblings().removeClass('current');
$('current li').clone().appendTo('.content');
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
上面的答案似乎是正确的,但如果您想操作附加到类内容的元素,那么您可以将 .text() 更改为 .html() ,如下所示。
The above answer seems right but if you would like to manipulate the elements appended to class content, then you can change .text() to .html() as shown below.
你为什么要克隆()这个。安装使用
why are you clone() this . insted use