我使用的是 js2coffee,但它似乎没有翻译,因为我得到了一个unexpected identifier
.
$.fn.wait = function( ms, callback ) {
return this.each(function() {
window.setTimeout((function( self ) {
return function() {
callback.call( self );
}
}( this )), ms );
});
};
我的咖啡版:
$.fn.wait = (ms, callback) ->
@each ->
window.setTimeout ((self) ->
->
callback.call self
(this)), ms