我需要为上传文件做简单的动态表单输入
$('.add_field_button').click(function(e){
$('.input_fields_wrap').append('<input type="file" class="form" name="fileField" />');
});
我刚刚测试过简单这个脚本工作正常,但我的html模板使用两个输入进行文件上传
<input type="text" class="form" name="textfield" /> this showing only selected file
<input type="file" class="form" name="fileField" /> this showing only select button
当我需要提供所有这两个输入时
$('.input_fields_wrap').append('<input type="text" class="form" name="textfield" /><input type="file" class="form" name="fileField" />');
我追加这样,看起来不错,但是当我浏览文件时,试着选择他没有选择只显示空白文本输入的附加表格。