Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在本教程中,它包含以下代码:
jQuery(function($) { // do stuff ... });
我如何在 CoffeeScript 中写这个? jQuery($) ->不对,但我不知道是什么。
jQuery($) ->
如果我没记错的话,就像这样:$ ->
$ ->
您必须在jQuery创建匿名函数后添加一个空格,$并将其作为唯一参数:
jQuery
$
jQuery ($) -> foo();
结果:
jQuery(function($) { return foo(); });