在JS我有
$("#index").on({ click : function() { // do something useful with $(this)....} },"li.superclass");
如何用CoffeeScript描述这个?
解决方法
几乎一样:
$("#index").on click: -> alert ("hi"),"li.superclass"