0
鑑於以下JS代碼:使用OOJS的遞歸方法
+ -------------------------------- ------------- +
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()」遞歸?
謝謝。