aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/api/file/using_files_from_web_applications
diff options
context:
space:
mode:
authorA1lo <yin199909@aliyun.com>2022-03-19 03:51:33 +0800
committerGitHub <noreply@github.com>2022-03-19 03:51:33 +0800
commitefad3dbdb62d1977c01b953a076bf699100b77e9 (patch)
tree1d6821621c5b23c66edf0be9771b23f9312171d3 /files/zh-tw/web/api/file/using_files_from_web_applications
parent2d67ce927bfd98fe4cd02d11c950b960945638b5 (diff)
downloadtranslated-content-efad3dbdb62d1977c01b953a076bf699100b77e9.tar.gz
translated-content-efad3dbdb62d1977c01b953a076bf699100b77e9.tar.bz2
translated-content-efad3dbdb62d1977c01b953a076bf699100b77e9.zip
replace all `anch` marco in `zh-TW` (#4708)
* fix: resolve some incorrect anchors * fix: resolve some incorrect anchors * fix: resolve some incorrect anchors
Diffstat (limited to 'files/zh-tw/web/api/file/using_files_from_web_applications')
-rw-r--r--files/zh-tw/web/api/file/using_files_from_web_applications/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-tw/web/api/file/using_files_from_web_applications/index.html b/files/zh-tw/web/api/file/using_files_from_web_applications/index.html
index cf9719ccd2..cfcb654de0 100644
--- a/files/zh-tw/web/api/file/using_files_from_web_applications/index.html
+++ b/files/zh-tw/web/api/file/using_files_from_web_applications/index.html
@@ -5,7 +5,7 @@ tags:
- 待翻譯
translation_of: Web/API/File/Using_files_from_web_applications
---
-<p> {{ gecko_minversion_header("1.9.2") }}</p>
+<p>{{ gecko_minversion_header("1.9.2") }}</p>
<p>現在可以透過新增至HTML5 DOM的File API讓web內容要求使用者選取本地端的檔案後讀取被選取檔案中的內容。檔案的選取動作可以使用HTML的 <a href="/en/DOM/HTMLInputElement" title="en/DOM/Input"><code>input</code></a> 元素,或是用拖曳檔案(drag and drop)的方式來完成。</p>
@@ -228,7 +228,7 @@ function dragover(e) {
&lt;/div&gt;
</pre>
-<p>This establishes our file {{ HTMLElement("input") }} element, as well as a link that invokes the file picker, since we keep the file input hidden to prevent that less-than-attractive UI from being displayed. This is explained above in the section {{ anch("Using hidden file input elements using the click() method") }}, as is the <code>doClick()</code> method that invokes the file picker.</p>
+<p>This establishes our file {{ HTMLElement("input") }} element, as well as a link that invokes the file picker, since we keep the file input hidden to prevent that less-than-attractive UI from being displayed. This is explained above in the section <a href="#使用click()_方法隱藏檔案輸入元素">Using hidden file input elements using the click() method</a>, as is the <code>doClick()</code> method that invokes the file picker.</p>
<p>The <code>handleFiles()</code> method follows:</p>