有没有办法(希望干净)我可以在这里做同样的事情而不分配状态值?当 if 条件在同一行时,我一直遇到 if 条件返回布尔值(而不是函数)的问题。
onItemChanged = (event,ui) ->
input_element = event.target
list_id = input_element.getAttribute('list_id')
state = if input_element.checked
onItemChecked //function of int -> nothing
else
onItemUnchecked //function of int -> nothing
state (list_id )