适用于嵌套函数的coffeescript语法

时间:2015-09-20 03:42:02

标签: javascript coffeescript

如何使用正确的coffeescript语法编写?

z-index: 9999;

我的尝试不正确:

$("select#test").bind({
  "focus": function(ev, obj) {
    # Do something when the focus event is triggered
  }
});

2 个答案:

答案 0 :(得分:1)

$('select#test').bind 'focus': (ev, obj) ->
  # Do something when the focus event is triggered
  return

答案 1 :(得分:1)

你的代码完全没问题。除了//不是你做评论的事实,这就是崩溃的事,哈哈。 # is for comments