aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/htmlinputelement/mozsetfilenamearray
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/api/htmlinputelement/mozsetfilenamearray
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/web/api/htmlinputelement/mozsetfilenamearray')
-rw-r--r--files/zh-cn/web/api/htmlinputelement/mozsetfilenamearray/index.html48
1 files changed, 48 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/htmlinputelement/mozsetfilenamearray/index.html b/files/zh-cn/web/api/htmlinputelement/mozsetfilenamearray/index.html
new file mode 100644
index 0000000000..6ba774d00e
--- /dev/null
+++ b/files/zh-cn/web/api/htmlinputelement/mozsetfilenamearray/index.html
@@ -0,0 +1,48 @@
+---
+title: HTMLInputElement.mozSetFileNameArray
+slug: Web/API/HTMLInputElement/mozSetFileNameArray
+translation_of: Web/API/HTMLInputElement
+---
+<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>