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.multiple

HTMLInputElement.multipleinputタグが複数の値を持つことができるかどうかを示すプロパティです。現在Firefoxでは、multiple属性は<input type="file">でのみサポートされています。

// fileInputは<input type=file multiple>であるようなHTML要素です
var fileInput = document.getElementById("myfileinput");

if (fileInput.multiple == true) {

    for (var i = 0, len = fileInput.files.length; i < len; i++) {
        // fileInput.filesをループ
    }

// 一つのファイルのみが有効な場合
} else {
    var file = fileInput.files.item(0);
}

関連情報

仕様

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

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