Javascript 在滑块div上设置动态内容

Javascript 在滑块div上设置动态内容,javascript,jquery,html,Javascript,Jquery,Html,我尝试使用这两个jquery插件(/)中的一个来滑动DIV内容。 在创建插件对象之后,我尝试设置动态内容(使用js)之前,一切都正常。 div仅显示在创建插件之前加载的内容。 任何想法或其他DIV滑块插件的这个目标。 谢谢 我已经检查过了,ajax工作得很好。 这是coda滑块$(“#滑块id”)的加载函数 至于“尴尬”: Kevin Batdorf在Coda Slider的基础上改进了一种叫做Liquid Slider的东西,它支持ajax和回调 阅读有关它的教程 它在上提供。您必须向我们展示

我尝试使用这两个jquery插件(/)中的一个来滑动DIV内容。 在创建插件对象之后,我尝试设置动态内容(使用js)之前,一切都正常。 div仅显示在创建插件之前加载的内容。 任何想法或其他DIV滑块插件的这个目标。 谢谢

我已经检查过了,ajax工作得很好。 这是coda滑块
$(“#滑块id”)的加载函数
至于“尴尬”:


Kevin Batdorf在Coda Slider的基础上改进了一种叫做Liquid Slider的东西,它支持ajax和回调

阅读有关它的教程


它在上提供。

您必须向我们展示您所指的一些代码。最初用于加载滑块的函数有哪些?什么是Ajax调用,旨在加载额外的内容?有100个内容滑块插件。。。寻找一个具有您需要的功能和告诉您如何添加内容的文档。这里的人不会猜你在尝试什么插件,也不会为你做文档搜索亲爱的charlietfl,你可以对堆栈中的任何问题说出来。我不希望没有人为我做搜索!!!我试图从开发人员那里得到帮助,也许有人知道这个领域的问题,或者知道这个特定的插件,或者在其他插件中有类似的使用。更多的时候,我尝试了4个类似的插件,在所有有相同的问题
$(window).ready(function () {
        $("#showcase").awShowcase(
    {
        content_width: 700,
        fit_to_parent: false,
        auto: false,
        interval: 3000,
        continuous: false,
        loading: true,
        tooltip_width: 200,
        tooltip_icon_width: 32,
        tooltip_icon_height: 32,
        tooltip_offsetx: 18,
        tooltip_offsety: 0,
        arrows: true,
        buttons: true,
        btn_numbers: false,
        keybord_keys: true,
        mousetrace: false, /* Trace x and y coordinates for the mouse */
        pauseonover: true,
        stoponclick: true,
        transition: 'fade', /* hslide/vslide/fade */
        transition_speed: 500,
        transition_delay: 300,
        show_caption: 'onhover', /* onload/onhover/show */
        thumbnails: true,
        thumbnails_position: 'outside-last', /* outside-last/outside-first/inside-last/inside-first */
        thumbnails_direction: 'horizontal', /* vertical/horizontal */
        thumbnails_slidex: 0, /* 0 = auto / 1 = slide one thumbnail / 2 = slide two thumbnails / etc. */
        dynamic_height: true, /* For dynamic height to work in webkit you need to set the width and height of images in the source. Usually works to only set the dimension of the first slide in the showcase. */
        speed_change: false, /* Set to true to prevent users from swithing more then one slide at once. */
        viewline: false /* If set to true content_width, thumbnails, transition and dynamic_height will be disabled. As for dynamic height you need to set the width and height of images in the source. */
    });
    });