aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/htmlinputelement/mozgetfilenamearray/index.html
blob: 4148d4abf4c43fd31c5da2c3c2e3e4c0fc084688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
title: HTMLInputElement.mozGetFileNameArray()
slug: Web/API/HTMLInputElement/mozGetFileNameArray
translation_of: Web/API/HTMLInputElement/mozGetFileNameArray
---
<div>{{ APIRef("HTML DOM") }}{{Non-standard_header}}</div>

<p><strong><code>HTMLInputElement.mozGetFileNameArray()</code></strong>メソッドはHTMLの<code>input</code>要素上でユーザーによって選択されたファイルの名前の配列を返します。</p>

<div class="note"><strong>Note:</strong> このメソッドはGeckoに特有のものであり、他のブラウザでは利用できません。加えて、Webページで利用した場合にエラーが発生します。</div>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox">inputElement.mozGetFileNameArray(<em>aLength, aFileNames</em>);
</pre>

<h3 id="Parameters" name="Parameters">パラメーター</h3>

<dl>
 <dt><em>aLength</em></dt>
 <dd>If specified, will receive the number of file names in the returned array.</dd>
 <dt><em>aFileNames</em></dt>
 <dd>Is an array into which the file names are placed.</dd>
</dl>

<ul>
</ul>

<h2 id="Example" name="Example"></h2>

<pre class="brush:js">var numFiles = 0;
var fileArray = {};

inputElement.mozGetFileNameArray(numFiles, fileArray);
</pre>

<h2 id="Specification" name="Specification">仕様</h2>

<p>Mozillaに特有のメソッドであり、どの仕様にも書かれていません。</p>

<h2 id="関連情報">関連情報</h2>

<ul>
 <li>{{HTMLElement("input")}}</li>
 <li>{{domxref("HTMLInputElement")}}</li>
 <li>{{domxref("Input.mozSetFileNameArray")}}</li>
</ul>