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.
我对这个咖啡脚本完全陌生,但 Rails 似乎希望我使用它,所以我正在尝试一下。
我有点了解咖啡脚本页面上的基本示例,但我不确定如何将此 jquery 函数转换为咖啡脚本
$(function() { $('#alert').delay(100).show("drop", { direction:"up" }, 900); });
InPursuit是正确的,但我相信$ ->它更像是一种咖啡成语。
$ ->
$ -> $('#alert').delay(100).show 'drop', direction: "up", 900
...编译为:
$(function() { return $('#alert').delay(100).show('drop', { direction: "up" }, 900); });
查看此链接以查看它的实际效果,并与咖啡 repl 一起玩。
这应该有效:
$(() -> $('#alert').delay(100).show('drop', {direction:"up"}, 900))