FormDataEvent: FormDataEvent() コンストラクター
FormDataEvent()
コンストラクターは、新しい FormDataEvent
オブジェクトインスタンスを生成します。
構文
js
new FormDataEvent(type, formEventInit)
引数
type
-
文字列で、このイベントの名前を表します。 大文字小文字を区別し、ブラウザーは常に
formdata
に設定します。 options
-
オブジェクトで、
Event()
で定義されているプロパティに加え、以下のプロパティを持つことができます。formData
-
FormDataEvent
に事前に入力するFormData
オブジェクトです。 これには、FormDataEvent.formData
プロパティを介してアクセスします。
返値
新しい FormDataEvent
オブジェクトです。
例
js
const fd = new FormData();
fd.append("test", "test");
const fdEv = new FormDataEvent("formdata", { formData: fd });
for (const value of fdEv.formData.values()) {
console.log(value);
}
仕様書
Specification |
---|
HTML Standard # the-formdataevent-interface |
ブラウザーの互換性
BCD tables only load in the browser