diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-30 02:24:12 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-06 18:02:16 +0900 |
commit | a8c4fed2cb608590b6e844a0efdee8575e84b501 (patch) | |
tree | 9128140dcf1903149510303673ce981f7326479d /files/ja/web/api/progressevent/total/index.md | |
parent | 4e79d05097ea4f2c4a6f79f7427181312db4ced2 (diff) | |
download | translated-content-a8c4fed2cb608590b6e844a0efdee8575e84b501.tar.gz translated-content-a8c4fed2cb608590b6e844a0efdee8575e84b501.tar.bz2 translated-content-a8c4fed2cb608590b6e844a0efdee8575e84b501.zip |
2021/09/15 時点の英語版に同期
Diffstat (limited to 'files/ja/web/api/progressevent/total/index.md')
-rw-r--r-- | files/ja/web/api/progressevent/total/index.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/files/ja/web/api/progressevent/total/index.md b/files/ja/web/api/progressevent/total/index.md new file mode 100644 index 0000000000..605cdc52d0 --- /dev/null +++ b/files/ja/web/api/progressevent/total/index.md @@ -0,0 +1,35 @@ +--- +title: ProgressEvent.total +slug: Web/API/ProgressEvent/total +tags: + - API + - 進捗イベント + - ProgressEvent + - プロパティ + - Reference +browser-compat: api.ProgressEvent.total +translation_of: Web/API/ProgressEvent/total +--- +{{APIRef("DOM Events")}} + +**`ProgressEvent.total`** は読み取り専用のプロパティであり、 64 ビット符号なし整数値で、処理または転送されるデータの全体の大きさを示します。 HTTP 通信の場合は、これはメッセージの本文の大きさ (`Content-Length`) であり、ヘッダーやその他のオーバーヘッドは含みません。 + +このイベントの {{domxref("ProgressEvent.lengthComputable", "lengthComputable")}} プロパティが `false` であった場合、この値は意味がなく、無視されます。 + +## 構文 + +```js +let value = progressEvent.total; +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- 所属する {{domxref("ProgressEvent")}} インターフェイス |