如果 HTML 文件输入字段为空,是否可以禁用表单提交?

发布于 2024-12-11 03:46:10 字数 151 浏览 0 评论 0 原文

在仅包含输入字段的表单中

<input id="fileInput" name="BugReport" type="file" />

,如果文件输入为空(尚未选择文件),我想禁用“提交”按钮。有推荐的方法吗?

In a form which contains only a

<input id="fileInput" name="BugReport" type="file" />

input field, I would like to disable the Submit button if the file input is empty (no file was chosen yet). Is there a recommended way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

以可爱出名 2024-12-18 03:46:10

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).

2024-12-18 03:46:10

检查文件输入的值是否始终有效。

if (document.getElementById("fileInput").value == "") .....

出于安全原因,文件的真实路径将被混淆,但当选择文件时,该值应始终返回某物

Checking for whether the file input's value should always work.

if (document.getElementById("fileInput").value == "") .....

the true path of the file will be obfuscated for security reasons, but the value should always return something when a file is selected.

堇年纸鸢 2024-12-18 03:46:10

您可以使用 JavaScript 来完成。以下代码假设您已为表单的提交按钮指定了“s”的 id

document.getElementById("fileInput").onchange = function() {
    if(this.value) {
        document.getElementById("s").disabled = false; 
    }  
}

显然,您需要禁用提交按钮才能开始。例如:

<input type="submit" id="s" disabled>

You can do it with JavaScript. The following code assumes you have given an id of "s" to the submit button of the form:

document.getElementById("fileInput").onchange = function() {
    if(this.value) {
        document.getElementById("s").disabled = false; 
    }  
}

Obviously, you'll need to have the submit button disabled to start off. For example:

<input type="submit" id="s" disabled>
伊面 2024-12-18 03:46:10

对此,最好的方法是让 Javascript 在所有输入发生更改时对其进行验证。因此,当输入发生更改(您可以使用 onchange 事件)时,Javascript 中的启用或禁用按钮取决于。

<input id="fileInput" name="BugReport" type="file" onchange="validateForm()"/>

这应该调用 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.

<input id="fileInput" name="BugReport" type="file" onchange="validateForm()"/>

This should call the javascript button which will check the input is it has a valid file and if so enable the submit button.

人间不值得 2024-12-18 03:46:10

您可以使用 jQuery 来完成此操作

<script src="/Scripts/jquery-1.5.1.js" type="text/javascript"></script>

<script>
    $(function () {
        $('#submit').attr("disabled", true);

        $('#fileInput').change(function () {
            if ($('#fileInput').val().length == 0)
                $('#submit').attr("disabled", true);
            else
                $('#submit').attr("disabled", false);
        });
    });
</script>

<input id="fileInput" name="BugReport" type="file" />
<input id="submit" type="submit" />

希望这会有所帮助

You can do this using jQuery

<script src="/Scripts/jquery-1.5.1.js" type="text/javascript"></script>

<script>
    $(function () {
        $('#submit').attr("disabled", true);

        $('#fileInput').change(function () {
            if ($('#fileInput').val().length == 0)
                $('#submit').attr("disabled", true);
            else
                $('#submit').attr("disabled", false);
        });
    });
</script>

<input id="fileInput" name="BugReport" type="file" />
<input id="submit" type="submit" />

hope this helps

少钕鈤記 2024-12-18 03:46:10

是的,您可以添加类似的内容:

<input type="submit" onclick="if (window.getElementById('fileInput').value == '') return false" />

或者从禁用的提交按钮开始,并在单击文件输入并且该值与空字符串不同时启用它。

检查 这个 jsbin 以查看文件输入的值是什么(它是一个“假路径”和文件名)

yeah, you can add something like:

<input type="submit" onclick="if (window.getElementById('fileInput').value == '') return false" />

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)

不必了 2024-12-18 03:46:10

如果您使用 HTML5,只需在输入标记内添加 required

<input type='file' required />

示例:

<form>
  <input type='file' required />
  <button type="submit"> Submit </button>
</form>

If you are using HTML5 just add required inside input tag:

<input type='file' required />

Example:

<form>
  <input type='file' required />
  <button type="submit"> Submit </button>
</form>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文