我很难知道那里有什么问题?我相信我没有正确传递参数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