我在coffeescript中尝试这个:
$( element ).mousedown( aFunction ).mouseup( anotherFunction );
我正在尝试使用缩进的方法,以便像下面这样的东西将返回以下内容:
$element .mousedown aFunction .mouseup anotherFunction
但无济于事,有没有关于coffeescript链接的建议?
解决方法
我确定你不想使用括号,但……
$("#element") .mousedown(aFunction) .mouseup(anotherFunction)
编译成
$("#element").mousedown(aFunction).mouseup(anotherFunction);