當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。