ajax 之后重新初始化 jCarousel

发布于 2024-10-03 20:35:43 字数 348 浏览 4 评论 0原文

我试图在从服务器

.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昔日梦未散 2024-10-10 20:35:43

添加新的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文