使 jquery ui 选项卡适用于附加元素
我想在一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将 .tabs 调用移至 .get 回调:
Try moving your .tabs invocation to the .get callback: