我有一个加载了 jQuery 内容的页面,其中一个 div 将是一个滑块
$('#slides').slides({
preload: true,
preloadImage: 'img/loading.gif',
play: 6000,
pause: 2500,
hoverPause: true,
slideSpeed: 1000,
animationStart: function(current){
$('.caption').animate({
bottom:-35
},100);
},
animationComplete: function(current){
$('.caption').animate({
bottom:0
},200);
},
slidesLoaded: function() {
$('.caption').animate({
bottom:0
},200);
}
});
});
现在,html的结构如下:
<div id"content">
<div id="slider"></div>
</div>
我已经使用 jquery 设置了我的页面,当用户点击一个链接时,它会将该页面的内容加载到#content
var homepage = $("#content").html();
$("#content").load("myContent.html");
如果用户回家,只需:
$("#content").html(homepage);
但后来$('#slides').slides();
不再起作用了。
我该如何解决?