diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:43:23 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:43:23 -0500 |
commit | 218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (patch) | |
tree | a9ef8ac1e1b8fe4207b6d64d3841bfb8990b6fd0 /files/zh-tw/web/api/file/filename | |
parent | 074785cea106179cb3305637055ab0a009ca74f2 (diff) | |
download | translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.gz translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.bz2 translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.zip |
initial commit
Diffstat (limited to 'files/zh-tw/web/api/file/filename')
-rw-r--r-- | files/zh-tw/web/api/file/filename/index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/files/zh-tw/web/api/file/filename/index.html b/files/zh-tw/web/api/file/filename/index.html new file mode 100644 index 0000000000..0e6cceb4f3 --- /dev/null +++ b/files/zh-tw/web/api/file/filename/index.html @@ -0,0 +1,32 @@ +--- +title: File.fileName +slug: Web/API/File/fileName +translation_of: Web/API/File/fileName +--- +<p>{{APIRef("File API")}}{{non-standard_header}}</p> + +<p>{{deprecated_header(7.0)}}</p> + +<h2 id="總覽">總覽</h2> + +<p>回傳檔案名稱,基於安全因素,檔案路徑不包含這個屬性。</p> + +<div class="note">這個檔案是廢棄的,使用 {{domxref("File.name")}} 取代。</div> + +<h2 id="語法">語法</h2> + +<pre>var name = instanceOfFile.fileName</pre> + +<h2 id="數值">數值</h2> + +<p>字串</p> + +<h2 id="Specification" name="Specification">格式</h2> + +<p>尚無資料</p> + +<h2 id="看更多">看更多</h2> + +<ul> + <li>{{domxref("File.name")}}</li> +</ul> |