给定以下 JS 代码:
+----------------------------------------------------------+
this.Element = function() {
this.twitch = function(e) {
$(e).animate({
height: "+=5"
}, 1000, function() {
$(e).animate({
height: "-=5"
}, 1000, function() {
});
});
};
$(document).ready(function() {
var footer = new this.Element();
footer.twitch("#footer");
});
+----------------------------------------------------------+
如何递归调用方法“twitch()”?
谢谢你。