$(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");
});
});
问题是我的最后一个函数处于错误的位置,因为它执行i aint所以肯定要放另一个jquery函数可以some1查看它:) 我需要知道我是否有错误的位置欢呼的
答案 0 :(得分: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我无法进一步帮助,我只知道你是否使用了所有代码的类,最终会出现几行纯粹的真棒。
答案 1 :(得分:0)
swapImages
应该按照你编写它的方式在全局(窗口)范围内。