Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

HTMLInputElement.mozGetFileNameArray()

非標準
この機能は標準ではなく、標準化の予定もありません。公開されている Web サイトには使用しないでください。ユーザーによっては使用できないことがあります。実装ごとに大きな差があることもあり、将来は振る舞いが変わるかもしれません。

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

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

構文

inputElement.mozGetFileNameArray(aLength, aFileNames);

パラメーター

aLength
If specified, will receive the number of file names in the returned array.
aFileNames
Is an array into which the file names are placed.

var numFiles = 0;
var fileArray = {};

inputElement.mozGetFileNameArray(numFiles, fileArray);

仕様

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

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: MakeNowJust
 最終更新者: MakeNowJust,