0

我正在尝试上传文件以获取像jsfiddle这样的输入列表如何将uploadify jQuery添加到此控件并上传图像codeigniter。我正在尝试此链接中引用的以下代码

jQuery(".file_upload").each(function() {
   jQuery(this).uploadify({
      height        : 30,
      swf           : '/uploadify/uploadify.swf',
      uploader      : '/script/uploadify/uploadify.php',
      width         : 120
   });
});

但这对我不起作用。任何帮助都会很棒。

4

1 回答 1

0

你的HTML应该是这样的,

<!-- Use file type instead of text -->
<input type="file" name="test1[]" class="file_upload"/>
<input type="file" name="test1[]" class="file_upload"/>
<input type="file" name="test1[]" class="file_upload"/>

并在提交表单时使用您的代码

于 2013-10-15T09:58:26.207 回答