我在coffeescript中尝试这样做:
$( element ).mousedown( aFunction ).mouseup( anotherFunction );
我正在尝试找出一种利用缩进的方法,以便以下内容将返回有关内容:
$ element
.mousedown aFunction
.mouseup anotherFunction
但无济于事,有没有关于在咖啡脚本中链接的建议?
我在coffeescript中尝试这样做:
$( element ).mousedown( aFunction ).mouseup( anotherFunction );
我正在尝试找出一种利用缩进的方法,以便以下内容将返回有关内容:
$ element
.mousedown aFunction
.mouseup anotherFunction
但无济于事,有没有关于在咖啡脚本中链接的建议?
我确定您不想使用括号,但是...
$("#element")
.mousedown(aFunction)
.mouseup(anotherFunction)
编译为
$("#element").mousedown(aFunction).mouseup(anotherFunction);
req = $.get('foo.html')
.success (response) ->
do_something()
.error (response) ->
do_something()
...编译为:
var req;
req = $.get('foo.html').success(function(response) {
return do_something();
}).error(function(response) {
return do_something();
});
看起来mus 太短了,在上面的评论中也建议了它。