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.

HTMLFormElement.enctype

概要

enctype は form 要素のコンテンツタイプの取得 / 設定に用います。

構文

string = form.enctype // 取得

form.enctype = string // 設定

var firstForm = document.getElementsByTagName("form")[0]; // 文書中の最初の form 要素を取得

firstForm.enctype = "application/x-www-form-urlencoded"; // 設定
alert( firstForm.enctype ); // 確認

注記

エンコーディングタイプは一般的に "application/x-www-form-urlencoded" となります。

仕様書

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

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