我正在尝试将项目添加到 jquery 幻灯片(幻灯片),但我找不到刷新它的方法。我有这个 html 代码:
<a class='add' href='#'>add slide</a>
<div id="slides">
<div class="slides_container">
<h1>Slide 1</h1>
<h1>Slide 2</h1>
<h1>Slide 3</h1>
<h1>Slide 4</h1>
<h1>Slide 5</h1>
</div>
</div>
这个js:
$(function() {
$("#slides").slides();
$('.add').live('click', (function() {
$('.slides_control').append('<h1>Slide added</h1>');
// note: slides_control div is added by the slides plugin automatically and is the real container of the items.
return false;
}));
});
演示在小提琴中
我需要重新加载幻灯片以显示新数据,但我找不到办法。