无意改同事的代码发现的
function toggle(){
var _arguments=arguments;
var count=0;
$("#more").click(function(){
_arguments[count++%_arguments.length]();
})
} toggle(function(){
obj.animate({"height":oHeight});
$("#more").empty().html("点击收起");
},function(){
obj.animate({"height":eHeight+oPaddingTop});
$("#more").empty().html("点击展开");
})
实际就是取余,arguments执行基数还是偶数的方法