CallBack小问题

时间:2014-04-22 18:04:55

标签: syntax coffeescript

我很难知道那里有什么问题?我相信我没有正确传递参数startcolor。

这是我的功能

flash = (startcolor) ->
  $('#input_key').show()
  $('#header_key').css "background-color":  "#" + startcolor
  $('#input_key').fadeTo(100, 0.1).fadeTo(200, 1.0);
  console.dir startcolor

这是我对它的召唤

$('#button_configGet').on 'click', ->
  flash(startcolor)
  startcolor = "d34242"
  console.dir startcolor

0 个答案:

没有答案