为什么小提琴代码在dropbox上运行不一样?

时间:2014-04-24 11:07:54

标签: javascript jquery

我从dropbox下载了一个代码。当我运行我的代码时,它运行。我运行“simple.html” 这是链接 https://www.dropbox.com/sh/a4mrvmft99u0kr7/Dj44R-fqNy

并检查我所有的小提琴代码。它在浏览器中不会正常工作。为什么 ? http://jsfiddle.net/v4d2s/

    $(document).ready(function(){
        $("#browser").treeview({
            toggle: function(e) {
            alert($(this).find('ul').closest.id);
            //alert('===='+this.attr('id'));
                console.log("%s was toggled.", $(this).find(">span").text());
            }
        });

        $("#add").click(function() {
            var branches = $("<li><span class='folder'>New Sublist</span><ul>" + 
                "<li><span class='file'>Item1</span></li>" + 
                "<li><span class='file'>Item2</span></li></ul></li>").appendTo("#browser");
            $("#browser").treeview({
                add: branches
            });
        });

        /*$("#swipe").click(function() {
            alert('--')
            var effect = 'slide';

    // Set the options for the effect type chosen
    var options = { direction: 'right' };

    // Set the duration (default: 400 milliseconds)
    var duration = 700;
    // $('#test').show();
     $("#test").animate({left:'250px'});
    //$('#test').toggle(effect, options, duration);
        });*/

        $('#swipe').toggle(
    function(){
        $('#test').animate({
            position:'absolute',
            left:'50px',
            border:'1px solid black'


        }, 1500);

    },
    function(){
        $('#test').animate({
             position:'absolute',
            left:'-250px',

        }, 1500);     

});
    });

1 个答案:

答案 0 :(得分:2)

这就是你的问题:

http://jsfiddle.net/SimplyAzuma/v4d2s/1/

jQuery 1.8.3, 1.7.2, and 1.6.4 will work.

使用旧版本的jQuery,它可以完美地运行。

您也没有看到图片,因为您的css引用&#34; images / image.png&#34;。对于JSFiddle,没有图像文件夹。将这些更改为&#34; image.png&#34;它应该工作。