使用codeIgniter不会使数据从文件字段中消失

问题描述 投票:0回答:1

我已经填写了11个字段中的10个字段,其中包括选择了要上载文档的文件。提交后,错误是一条消息,显示在同时文件字段文档值也消失的同时,需要一个字段数据。

我正在使用以下方法,但是单击提交按钮时值消失了。

<input  class="form-control" type="file" class="form-control" id= "userfile" name= "userfile" value="<php? echo set_value('userfile');?>">

请帮助我进行纠正。

php html codeigniter codeigniter-2
1个回答
0
投票

您可以尝试使用jquery,以便当用户单击“提交”按钮时,您检查所有字段都正确,然后提交表单。

$("#submit_button").on("click", function(e){
    e.preventDefault();
    //code to check that all fields are fine
    $("#my_form").submit();
});
© www.soinside.com 2019 - 2024. All rights reserved.