」。"/> 」。">
在html5中,file是input元素中type屬性的屬性值,type屬性規定要顯示的input元素類型,當屬性值設定為“file”時,可以定義檔案選擇欄位和“瀏覽”按鈕,供檔案上傳,語法為「」。
本教學操作環境:windows10系統、html5版本、Dell G3電腦。
file是input元素中type屬性的屬性值
定義檔選擇欄位和"瀏覽.. ." 按鈕,供文件上傳。
type 屬性規定要顯示的 元素的型別。
預設類型是:text。
提示:該屬性不是必需的,但是我們認為您應該始終使用它。
語法為:
<input type="value">
範例如下:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>123</title> </head> <body> <form action="demo-form.php"> 选择一个文件: <input type="file" name="img"> <input type="submit"> </form> </body> </html>
輸出結果:
(學習視頻分享:css影片教學)
以上是html5表單中的file是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!