jQuery“on”和Coffeescript

前端之家收集整理的这篇文章主要介绍了jQuery“on”和Coffeescript前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在JS我有
$("#index").on({
  click : function() { // do something useful with $(this)....}
},"li.superclass");

如何用CoffeeScript描述这个?

解决方法

几乎一样:
$("#index").on click: ->
  alert ("hi"),"li.superclass"
原文链接:https://www.f2er.com/jquery/175704.html

猜你在找的jQuery相关文章