0

给定以下 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()”?

谢谢你。

4

1 回答 1

0

第一个错误,this在此上下文中引用 jQuerynew this.Element();

修复者:

this.Element = function( return this; ) {

this.Element.prototype.twitch = function(e) {
 var self = this;
        $(e).animate({
            height: "+=5"
        }, 1000, function() {
            $(e).animate({
                height: "-=5"
            }, 1000, function() {
               self.twitch(e);
            });
        });
    };

var self = this;
$(document).ready(function() {
    var footer = new this.Element();
    footer.twitch("#footer");
});
于 2013-09-28T10:36:56.470 回答