Coffeescript和jQuery链接

前端之家收集整理的这篇文章主要介绍了Coffeescript和jQuery链接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在coffeescript中尝试这个:
$( element ).mousedown( aFunction ).mouseup( anotherFunction );

我正在尝试使用缩进的方法,以便像下面这样的东西将返回以下内容

$element
    .mousedown aFunction
    .mouseup anotherFunction

但无济于事,有没有关于coffeescript链接的建议?

解决方法

我确定你不想使用括号,但……
$("#element")
  .mousedown(aFunction)
  .mouseup(anotherFunction)

编译成

$("#element").mousedown(aFunction).mouseup(anotherFunction);
原文链接:https://www.f2er.com/jquery/177546.html

猜你在找的jQuery相关文章