当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML accept属性用法及代码示例


此属性指定服务器接受的文件类型。此属性只能与<input>元素一起使用。此属性不用于验证工具,因为应该在服务器上验证文件上载。

用法:

<input accept = "file_extension"> 

属性:此属性仅与<input>元素相关联。

例:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>accept attribute</title> 
        <style> 
            body { 
                text-align:center; 
            } 
            h1 { 
                color:green; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>accept attribute</h2> 
        <form action=" "> 
            <input type="file" name="picture" accept="image/*"> 
            <input type="submit"> 
        </form> 
    </body> 
</html>                    

输出:

支持的浏览器:accept属性支持的浏览器如下:

  • 谷歌浏览器8.0
  • Internet Explorer 10.0
  • Firefox 4.0
  • Opera 15.0
  • 苹果Safari 6.0

相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | accept Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。