File size 屬性
size 屬性返回檔案的大小,繼承自 Blob 物件,單位以位元組計。
File 物件更多內容參閱JavaScript File 物件一章節。
語法結構:
[JavaScript] 純文字檢視 複製程式碼file.size
此屬性返回一個表示檔案大小的數字。
程式碼例項:
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="utf-8"> <meta name="author" content="https://www.softwhy.com/" /> <title>螞蟻部落</title> <style> div { width: 150px; height: 50px; line-height: 50px; font-size: 12px; text-align: center; border: 2px dotted green; } </style> <script> window.onload = ()=> { let oFile = document.getElementById("file"); let oShow =document.getElementById("show"); file.onchange = function () { oShow.innerHTML = oFile.files[0].size; } } </script> </head> <body> <input type="file" multiple id="file" /> <div id="show"></div> </body> </html>
通過檔案域選中一個文字檔案,程式碼執行效果截圖如下:
選中名為 HTML.txt 的文字檔案,並將其位元組大小寫入 div。
相關文章
- Blob size 屬性
- Map size 屬性
- Set size 屬性
- JavaScript select size 屬性JavaScript
- CSS font-size屬性CSS
- File name 屬性
- File type 屬性
- File lastModified 屬性AST
- maxlength和size屬性區別
- CSS3 background-size 屬性CSSS3
- ORA-27092: skgfofi: size of file exceeds file size limit of the processMIT
- gitignore by file size?Git
- background-size屬性用法簡單介紹
- Input的size與maxlength屬性的區別
- ORA-27046: file size is not a multiple of logical block sizeBloC
- CSS知識點之字型大小屬性font-sizeCSS
- logstash-input-file 配置屬性詳解
- [譯] Font-size:一個意外複雜的 CSS 屬性CSS
- mysql innodb_log_file_size 和innodb_log_buffer_size引數MySql
- [譯] 使用 CSS 的 font-size-adjust 屬性改善網頁排版CSS網頁
- ulimit: core file size: cannot modify limit: Operation not permittedMIT
- rsau/max_diskspace/per_file - Maximum size of one single security audit file
- CMake 屬性之全域性屬性
- linux下core file size設定筆記Linux筆記
- 如何選擇配置 MySQL innodb_log_file_sizeMySql
- Java如何建立臨時檔案並列印File各種屬性Java
- redo的等待log file sync和log file parallel write和redo size設定Parallel
- iOS動畫 屬性屬性解析iOS動畫
- defer 屬性和 async 屬性
- Oracle RAC 重置db_recovery_file_dest_size引數Oracle
- php執行的時候報File size limit exceededPHPMIT
- CSS 屬性篇(七):Display屬性CSS
- CMake 屬性之目標屬性
- CMake 屬性之目錄屬性
- OGG-01705 Input checkpoint position is greater than the size of the file
- JavaScript私有屬性和靜態屬性JavaScript
- CSS字型屬性和文字屬性詳解CSS
- goldengate extract abended unable to queue I/O, I/O beyond file sizeGo