elephant

赫本之后 再无女神

Coffeescript的=>

瘦箭头 ->用于 function创建

1
2
$("#login").click ->
  alert("ca")

胖箭头=>把 this作为参数代入function 在function中使用this 为外部定义function的this,起到作用域转移的作用

1
2
3
user_id="nidaye"
ele.addEventListener "click",(e)=>
  alert(this.user_id)