如果 HTML 文件输入字段为空,是否可以禁用表单提交?
在仅包含输入字段的表单中
<input id="fileInput" name="BugReport" type="file" />
,如果文件输入为空(尚未选择文件),我想禁用“提交”按钮。有推荐的方法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
将
required
属性添加到输入。它只能在支持它的浏览器中工作,因此您应该有一个 JavaScript 替代方案 (Add the
required
attribute to the input. It'll only work in browsers that support it, so you should have a JavaScript alternative (<form onSubmit="if(document.getElementById('fileinput').value == '') return false;">
or something along those lines).检查文件输入的值是否始终有效。
出于安全原因,文件的真实路径将被混淆,但当选择文件时,该值应始终返回某物。
Checking for whether the file input's value should always work.
the true path of the file will be obfuscated for security reasons, but the value should always return something when a file is selected.
您可以使用 JavaScript 来完成。以下代码假设您已为表单的提交按钮指定了“s”的
id
:显然,您需要禁用提交按钮才能开始。例如:
You can do it with JavaScript. The following code assumes you have given an
id
of "s" to the submit button of the form:Obviously, you'll need to have the submit button disabled to start off. For example:
对此,最好的方法是让 Javascript 在所有输入发生更改时对其进行验证。因此,当输入发生更改(您可以使用 onchange 事件)时,Javascript 中的启用或禁用按钮取决于。
这应该调用 javascript 按钮,该按钮将检查输入是否具有有效文件,如果是,则启用提交按钮。
With this the best way is to have Javascript validate all the inputs as they are changed. So as the input gets changed (you can use the on change event) in Javascript enable or disable the button depending.
This should call the javascript button which will check the input is it has a valid file and if so enable the submit button.
您可以使用 jQuery 来完成此操作
希望这会有所帮助
You can do this using jQuery
hope this helps
是的,您可以添加类似的内容:
或者从禁用的提交按钮开始,并在单击文件输入并且该值与空字符串不同时启用它。
检查 这个 jsbin 以查看文件输入的值是什么(它是一个“假路径”和文件名)
yeah, you can add something like:
or start with a disabled submit button and enable it when the file input is clicked and the value is different than the empty string.
check this jsbin to see what the value of a file input is (its a 'fakepath' and the name of the file)
如果您使用 HTML5,只需在输入标记内添加 required:
示例:
If you are using HTML5 just add required inside input tag:
Example: