下面代码中 return this 是什么意思?
swipe.scrollTo = function(x, speed) {
//执行动画移动
element.css({
'transition-timing-function' : 'linear',
'transition-duration' : speed + 'ms',
'transform' : 'translate3d(-' + x + 'px,0px,0px)'
});
return this; //这句是什么意思?返回的是哪个对象?
};