html – 使’file’输入元素强制(必需)

前端之家收集整理的这篇文章主要介绍了html – 使’file’输入元素强制(必需)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要(一个 HTML)’文件’输入元素强制性:像
<input type='file' required = 'required' .../>

但它不工作.

我看到这个WW3手册,其中规定了“必需”属性是HTML 5的新特性.但是我不使用HTML 5在我正在工作的项目中不支持功能.

任何想法?

解决方法

你可以使用Jquery这样做:
<script type="text/javascript">
$(document).ready(function() {
    $('#upload').bind("click",function() 
    { 
        var imgVal = $('#uploadfile').val(); 
        if(imgVal=='') 
        { 
            alert("empty input file"); 
            return false; 
        } 


    }); 
});
</script> 

<input type="file" name="image" id="uploadfile" size="30" /> 
<input type="submit" name="upload" id="upload"  class="send_upload" value="upload" />
原文链接:https://www.f2er.com/html/224798.html

猜你在找的HTML相关文章