实时更改jquery插件的值

时间:2015-07-15 15:28:00

标签: javascript jquery jquery-plugins

我需要更改此插件的属性值。在这种情况下,可拖动的值 - 每次按下链接。我真的知道如何继续。

这是我的剧本:

    for(int i=0;i<sb.length()-1;i++)
    {
        for(int j = i+1;j<sb.length();j++) //<-- you dont want to compare character to itself so j is initialised to i+1
        {
            if(sb.charAt(i)==sb.charAt(j)){ //<-- compare characters of string builders.
                sb.deleteCharAt(j);
                j--;                        //<-- reduce j by 1 to compensate for the reduction of character in sb
            }
        }

这是我的HTML:

<script>
    $('#image').reel({
    images:      'mini/###.jpg',
    frames:      20,
    frame:       14,
    rows:        6,
    row:         3,
    draggable:   false
    });
</script>

最后是脚本,我试图改变draggable的值,任何建议?

0 个答案:

没有答案