-1

在许多站点中,函数和对象返回值。为什么return重要?

Slider.prototype.setCurrent = function( dir ) {

    var pos = this.current;

    pos += ( ~~( dir === 'next' ) || -1 );
    this.current = ( pos < 0 ) ? this.imgsLen - 1 : pos % this.imgsLen;

    return pos;
}

在上面的例子中,为什么不返回this.current

4

1 回答 1

2

this.current设置后修改pos

this.current = ( pos < 0 ) ? this.imgsLen - 1 : pos % this.imgsLen;

pos存储 的旧值this.current,因此返回this.current而不是pos不会产生相同的结果。

于 2012-10-05T03:14:13.860 回答