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 に答える