ajax 之后重新初始化 jCarousel
我试图在从服务器
.js
$.reloadJc = function(){
$.get('jc.html', function(data){
$('ul.myjc').htlm(data);
$t.carousel.reset(); // $t.carousel is my jcarousel instance
$t.carousel.reload();
});
}
$.reloadJc();
更新数据后重新初始化 jCarousel(sorgalla.com/jcarousel)我想要的是 jcarousel 每次调用此函数时都会重建列表。
I am trying to reinitialise the jCarousel(sorgalla.com/jcarousel), after update data from server
.js
$.reloadJc = function(){
$.get('jc.html', function(data){
$('ul.myjc').htlm(data);
$t.carousel.reset(); // $t.carousel is my jcarousel instance
$t.carousel.reload();
});
}
$.reloadJc();
What I want is jcarousel rebuild the list every time I call this function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加新的 dom 项后,您需要重建 jCarousel。首先加载页面并创建jCarousel。由于您无法重新初始化 jCarousel ,因此您需要创建另一个 jCarousel 。使用新的 html 加载 dom 并将 jCarousel 应用于新元素。
我使用 jTemplate 和 json 来实现此功能。把事情做好需要一些时间,但如果工作需要的话,这是可以完成的。
You need to rebuild the jCarousel after the new dom items are added. First load the page and create jCarousel. Since you cannot reinitialise jCarousel you need to create another jCarousel . Load the dom with the new html and apply the jCarousel to the new elements.
I used jTemplate and json for this functionality. It takes some time to get things right, but if the job calls for it it can be done.