0

我正在尝试获得一系列不同的输入,但我不知道在咖啡上这样做,谢谢你的任何提示。

如果我在脚本上写另一个输入,第一个不起作用。

previewBoxWidth = 256
previewBoxHeight = 180

createUploadWithPreviewBox = (container, counter) ->
  #create preview box and file field and appending it to container
  input = $("<input type='file' id='f1' name='user[f1]'>")
  input = $("<input type='file' id='l1' name='photo[l2]'>")


  preview = $('<div>').addClass 'preview-container'
  preview.append input
  container.append preview
4

1 回答 1

1
preview = $('<div>').addClass 'preview-container'

input = $("<input type='file' id='f1' name='user[f1]'>")
preview.append input
input = $("<input type='file' id='l1' name='photo[l2]'>")
preview.append input

container.append preview
于 2013-07-12T23:22:25.647 回答