diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-05 11:36:15 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-12 10:43:00 +0900 |
commit | 6ded96366d70b0f2b6f56d88233745764b27dc5b (patch) | |
tree | ccec6faf387758309292b3320186e7a61cdba715 | |
parent | 144fdafc4b6deefb9084623038a9c0781794f619 (diff) | |
download | translated-content-6ded96366d70b0f2b6f56d88233745764b27dc5b.tar.gz translated-content-6ded96366d70b0f2b6f56d88233745764b27dc5b.tar.bz2 translated-content-6ded96366d70b0f2b6f56d88233745764b27dc5b.zip |
Update index.md
-rw-r--r-- | files/ja/web/api/htmlinputelement/webkitdirectory/index.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ja/web/api/htmlinputelement/webkitdirectory/index.md b/files/ja/web/api/htmlinputelement/webkitdirectory/index.md index 92ecb254e4..d028438011 100644 --- a/files/ja/web/api/htmlinputelement/webkitdirectory/index.md +++ b/files/ja/web/api/htmlinputelement/webkitdirectory/index.md @@ -69,14 +69,14 @@ translation_of: Web/API/HTMLInputElement/webkitdirectory この例では、ユーザーが 1 つまたは複数のディレクトリーを選択することができるディレクトリーピッカーが表示されます。 {{domxref("HTMLElement/change_event", "change")}} イベントが発生すると、選択されたディレクトリー階層ないのすべてのファイルを含むリストが生成され、表示されます。 -### HTML コンテンツ +### HTML content ```html <input type="file" id="filepicker" name="fileList" webkitdirectory multiple /> <ul id="listing"></ul> ``` -### JavaScript コンテンツ +### JavaScript content ```js document.getElementById("filepicker").addEventListener("change", function(event) { |