使用 AJAX 重新填充轮播
$(function(){
function showDisplay(items){
$.get('test'+items+'.html', function(data) {
$('.carousel ul').empty();
$('.carousel ul').html(data);
$("div.example-2").carousel({ direction: "vertical", dispItems:5 , pagination:true });
$('<div class="nextGroup">next</div>').appendTo($('.content-pag')).click( function(){
showDisplay('2');
});
});
showDisplay('1');
});
我有这段代码。这个想法是用 AJAX 添加的新项目重新填充轮播,但由于某种原因,当我调用 NEXT 按钮时,轮播崩溃了。我正在使用 jQuery Carousel
0.9.5。.content- pag 是由 carousel 生成的
你知道吗?
$(function(){
function showDisplay(items){
$.get('test'+items+'.html', function(data) {
$('.carousel ul').empty();
$('.carousel ul').html(data);
$("div.example-2").carousel({ direction: "vertical", dispItems:5 , pagination:true });
$('<div class="nextGroup">next</div>').appendTo($('.content-pag')).click( function(){
showDisplay('2');
});
});
showDisplay('1');
});
I have this code. The idea is repopulate carousel with new items added by AJAX, but for some reason when I call the NEXT button the carousel crashes. I'm using jQuery Carousel 0.9.5.
.content-pag is generated by carousel
Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的猜测是这样的:
应该是这样的:
My guess is this:
should be this: