请您查看以下链接,并告诉我为什么toggle()在代码中不起作用?
http://jsfiddle.net/GISMan/ZNkKZ/1/
这里也是代码,
function fluctuate(bar) {
var hgt = Math.random() * 10;
hgt += 1;
var t = hgt * 30;
bar.animate({
height: hgt
}, t, function() {
fluctuate($(this));
});
}
$(".bar").each(function(i) {
fluctuate($(this));
});
$("button").toggle(function(){
$(".bar").stop();},
function(){
$(".bar").fluctuate();}
);
感谢您的评论