使用jquery的动态HTML表单输入

时间:2015-01-20 13:56:52

标签: jquery html

我需要为上传文件做简单的动态表单输入

$('.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" />');

我追加这样,看起来不错,但是当我浏览文件时,试着选择他没有选择只显示空白文本输入的附加表格。

0 个答案:

没有答案