aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/conflicting/web/api/htmlinputelement
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2021-07-16 16:27:00 -0400
committerGitHub <noreply@github.com>2021-07-17 04:27:00 +0800
commitb9afb23d12dcae1e09f8d04c72143c5ddaa34aea (patch)
treef6c20844119bcaf0131ad4a037e0245577927f2c /files/zh-cn/conflicting/web/api/htmlinputelement
parent1aa671566c3a990ec2df9a46137471d624b6f7ff (diff)
downloadtranslated-content-b9afb23d12dcae1e09f8d04c72143c5ddaa34aea.tar.gz
translated-content-b9afb23d12dcae1e09f8d04c72143c5ddaa34aea.tar.bz2
translated-content-b9afb23d12dcae1e09f8d04c72143c5ddaa34aea.zip
delete conflicting/orphaned docs (zh-CN) (#1412)
* delete conflicting docs (zh-CN) * and redirects * do orphaned as well * fix * remove more orphans * revert orphaned docs that can identify origin * move orphaned docs to current loc * adjust slug path * fix redirect change from rebase Co-authored-by: Irvin <irvinfly@gmail.com>
Diffstat (limited to 'files/zh-cn/conflicting/web/api/htmlinputelement')
-rw-r--r--files/zh-cn/conflicting/web/api/htmlinputelement/index.html50
1 files changed, 0 insertions, 50 deletions
diff --git a/files/zh-cn/conflicting/web/api/htmlinputelement/index.html b/files/zh-cn/conflicting/web/api/htmlinputelement/index.html
deleted file mode 100644
index 82a91a1271..0000000000
--- a/files/zh-cn/conflicting/web/api/htmlinputelement/index.html
+++ /dev/null
@@ -1,50 +0,0 @@
----
-title: HTMLInputElement.mozSetFileNameArray
-slug: conflicting/Web/API/HTMLInputElement
-translation_of: Web/API/HTMLInputElement
-translation_of_original: Web/API/HTMLInputElement/mozSetFileNameArray
-original_slug: Web/API/HTMLInputElement/mozSetFileNameArray
----
-<div>
-<div>
-<div>
-<div>{{APIRef("HTML DOM")}}</div>
-</div>
-</div>
-{{gecko_minversion_header("1.9.2")}}</div>
-
-<h3 id="Summary" name="Summary">概述</h3>
-
-<p>设置一个HTML <code>input</code>元素中选中的若干文件的路径以及文件名.</p>
-
-<div class="note"><strong>注:</strong> 该方法是Gecko私有的方法,在其他浏览器中不可用,且是个特权方法,不能在普通网页中使用.</div>
-
-<h3 id="Syntax" name="Syntax">语法</h3>
-
-<pre class="eval">inputElement.mozSetFileNameArray(<em>aFileNames, </em><em>aLength</em>);
-</pre>
-
-<h3 id="Parameters" name="Parameters">参数</h3>
-
-<ul>
- <li><code>aFileNames</code> 指定给该元素的若干个文件的文件名路径以及文件名.</li>
- <li><code>aLength </code>需要指定文件的个数(<code>通常是</code>数组<code>aFileNames</code>的长度).</li>
-</ul>
-
-<h3 id="Example" name="Example">示例</h3>
-
-<pre class="brush: js">var fileArray = {"/foo/bar.txt", "/foo/foosball.txt"};
-
-inputElement.mozSetFileNameArray(fileArray, fileArray.length);
-</pre>
-
-<h3 id="Specification" name="Specification">规范</h3>
-
-<p>非标准,Mozilla私有方法.</p>
-
-<h3 id="相关链接">相关链接</h3>
-
-<ul>
- <li><a href="/zh-CN/DOM/Input" title="zh-CN/DOM/Input"><code>Input</code></a></li>
- <li><a href="/zh-CN/DOM/Input.mozGetFileNameArray" title="zh-CN/DOM/Input.mozGetFileNameArray"><code>Input.mozGetFileNameArray</code></a></li>
-</ul>