1
$(document).ready(function(){
    //image time
    //hide the Section
    $("#biocontent,#educontent,#expcontent,#rescontent,#mobcontent,#concontent,#gamcontent").hide();
    //toggle sections   
    $("#bioH").click(function(){
        $("#biocontent").toggle();
    });
    $("#eduH").click(function(){
        $("#educontent").toggle();
    });
    $("#expH").click(function(){
        $("#expcontent").toggle();      
    });
    $("#resH").click(function(){
        $("#rescontent").toggle();      
    });
    $("#mobH").click(function(){
        $("#mobcontent").toggle();      
    });
    $("#conH").click(function(){
        $("#concontent").toggle();      
    });
    $("#gamH").click(function(){
        $("#gamcontent").toggle();      
    });
    setInterval("swapImages()", 2000);
    //swap images for slideshow
    function swapImages(){
        var active = $("#gallery.active");
        var next = ($("#gallery.active").next().length > 0) ? $("#gallery.active").next() : $("#gallery img:first");
        active.removeClass("active");
        next.fadeIn().addClass("active");
    });     
});

问题是我的最后一个函数在错误的位置执行我不是所以肯定要放置另一个 jquery 函数可以查看它:) 我需要知道我是否有错误的位置欢呼

4

2 回答 2

1

错误:
setInterval("swapImages", 2000);function swapImages(){ }); <-- extra ')'

$(document).ready(function(){
//image time
//hide the Section
    $("#biocontent,#educontent,#expcontent,#rescontent,#mobcontent,#concontent,#gamcontent").hide();
//toggle sections   
    $("#bioH").click(function(){
            $("#biocontent").toggle();
        });
        $("#eduH").click(function(){
            $("#educontent").toggle();
        });
        $("#expH").click(function(){
            $("#expcontent").toggle();      
        });
        $("#resH").click(function(){
            $("#rescontent").toggle();      
        });
        $("#mobH").click(function(){
            $("#mobcontent").toggle();      
        });
        $("#conH").click(function(){
            $("#concontent").toggle();      
        });
        $("#gamH").click(function(){
            $("#gamcontent").toggle();      
        });

        setInterval(swapImages, 2000);

      //swap images for slideshow
    function swapImages(){
        var active = $("#gallery.active");
        var next = ($("#gallery.active").next().length > 0) ? $("#gallery.active").next() : $("#gallery img:first");
        active.removeClass("active");
        next.fadeIn().addClass("active");

        }     
});

无论如何,如果没有看到您的 HTML,我无法提供进一步的帮助,我只知道如果您使用类,所有这些代码都会以几行纯粹的令人敬畏的方式结束。

于 2012-11-02T03:05:45.303 回答
0

swapImages应该按照您编写的方式在全局(窗口)范围内。

于 2012-11-02T03:02:42.157 回答