2

ajaxfileupload https://github.com/jfeldstein/jQuery.AjaxFileUpload.jsというプラグインを使用しています

私の問題は、入力ファイルを動的に追加すると、プラグイン イベントが新しく追加された入力ファイルに適用されないことです。

これは、ファイル入力のクリック時にプラグインが呼び出される方法です。

$("#mcq_option_list input[type=file], #question_name input[type=file], #test").ajaxfileupload({

これは私の追加機能です:

$(this).before('<div class="answer_div"><input id="'+new_num+'" class="rb" type="radio" value="'+new_num+'"><label for="'+new_num+'" class="mc_label"><strong class="abcdWrapper">'+next_letter+'</strong></label><div class="fake-input"><input type="text" class="long_input" placeholder="Enter Sub Option here..." name="data[Quiz][option][]" autocomplete="off"><span></span><div class="inputWrapper"> Upload Image<input class="fileInput" type="file" name="data[Quiz][image]['+new_num+']" id="test"></div></div><a href="#" class="delete-scale-question"></a></div>');

事前に助けてくれてありがとう。

4

1 に答える 1