jQuery toggle()方法的问题

时间:2012-11-11 05:03:53

标签: jquery

请您查看以下链接,并告诉我为什么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();}
);

感谢您的评论

1 个答案:

答案 0 :(得分:2)

DEMO - 已修复。

变化:

$(".bar").fluctuate();

为:

fluctuate($(".bar"));