这可能看起来像一个愚蠢的问题,但不是
我使用以下JS' s
jquery 1.11.2,jquery-UI 1.11.2,bootstrap 3,input_file,inputmask,iCheck和jquery验证。
所有当前版本除了jquery,我还在使用1.11.2
所有这些都工作正常没有任何错误,我遇到的问题是单个输入字段
<form name="forms1"
method="post"
class="form-horizontal"
id="forms1"
action="check.php"
enctype="multipart/form-data"
accept-charset="utf-8"
role="form">
[... About 16 input field and selects...]
// At the end just before the submit btn I have this...
<div class="form-group">
<label for="images">Would you like to add an image?</label>
<input name="images" id="images" type="file" class="file form-control"
data-show-upload="false"
data-show-caption="true"
size="2000">
<small class="alert-danger">
We only accept this type of images: .gif, .png, .jpeg, .jpg
</small>
</div>
</form>
因此,当用户提交表单时,除了输入文件之外,所有内容都会得到相应的验证,因为它只是一个选项而不是必需的,如果用户上传文件,如果一切正确,将单独检查,它将被添加到他们的&#34;应用程序&#34;,但是这里的东西,特定的输入不像其余的那样发送/发布,空的或不是只是不存在但是如果我添加随机输入类型文本或任何其他文件确实发送...这个表格上没有什么特别的,就像任何其他表格一样 关于为什么不能发送特定输入的任何想法?