使 jquery ui 选项卡适用于附加元素

发布于 2024-10-19 18:42:53 字数 489 浏览 5 评论 0原文

我想在一些 append() -ed HTML 上使用 .tabs 效果(稍微自定义),如下所示:

$(document).ready(function(){
  $.get('/featured-slider.php', function(data) {
    $('#wrapper').append(data);
  });

  $('#featured-slider').tabs({fx:{opacity: 
       "toggle"}}).tabs("rotate", 5000, true);
});

如果 featured-slider.php 的内容 已经在文件中(也就是说我根本没有 .get()),选项卡效果非常好。但是,如果我尝试 append() HTML(如上面的代码),它不起作用。

有谁知道如何让它发挥作用?

I want to use the .tabs effect (customised a little) on some append() -ed HTML like this:

$(document).ready(function(){
  $.get('/featured-slider.php', function(data) {
    $('#wrapper').append(data);
  });

  $('#featured-slider').tabs({fx:{opacity: 
       "toggle"}}).tabs("rotate", 5000, true);
});

If the contents of featured-slider.php are already in the file (that is to say I do not .get() at all) the tabs effect works great. However, if I try to append() the HTML (like the code above) it does not work.

Does anyone know how to make it work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

最美的太阳 2024-10-26 18:42:53

尝试将 .tabs 调用移至 .get 回调:

$(document).ready(function(){
    $.get('/featured-slider.php', function(data) {
        $('#wrapper').append(data);
        $('#featured-slider').tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
    });
});

Try moving your .tabs invocation to the .get callback:

$(document).ready(function(){
    $.get('/featured-slider.php', function(data) {
        $('#wrapper').append(data);
        $('#featured-slider').tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文