$(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 函数可以查看它:) 我需要知道我是否有错误的位置欢呼