小提琴 - http://codepen.io/mikethedj4/pen/BNRdVp
今天我决定学习Coffeescript,并参与制作一些功能,处理事件等等。
然而今天我收到一条错误,上面写着“保留字'功能'”,并且还没弄清楚如何解决它。
原件:
$(function () {
function download_to_textbox(url, el) {
$.get(url, null, function (data) {
el.val(data);
}, "text");
}
download_to_textbox("http://code.jquery.com/jquery-latest.min.js", $("textarea"));
});
我的翻译:
(($) ->
function download_to_textbox(url, el) {
$.get(url, null, (data) ->
el.val(data);
}, "text");
}
download_to_textbox("http://code.jquery.com/jquery-latest.min.js", $("textarea"));
$("textarea").click ->
$(this).select();
) jQuery
答案 0 :(得分:1)
$ ->
download_to_textbox = (url, el) ->
$.get url, null, ((data) ->
el.val data
return
), 'text'
download_to_textbox 'http://code.jquery.com/jquery-latest.min.js', $ 'textarea'
$("textarea").click ->
$(this).select()