tutorial pengembangan web terbaru
 

Button formEnctype Property

<Tombol Object

Contoh

Kembali bagaimana bentuk-data harus dikodekan sebelum mengirimnya ke server:

var x = document.getElementById("myBtn").formEnctype;

Hasil x bisa menjadi:

text/plain
Cobalah sendiri "

Definisi dan Penggunaan

The formEnctype set properti atau mengembalikan nilai dari formenctype atribut tombol.

The formenctype atribut menentukan bagaimana bentuk-data harus dikodekan sebelum mengirimnya ke server. Atribut ini menimpa atribut enctype form.

The formenctype atribut hanya digunakan untuk tombol dengan type = "submit".

Catatan: formenctype atribut baru untuk <button> elemen dalam HTML5.


Dukungan Browser

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Properti formEnctype didukung di semua browser utama.

Catatan: Properti formEnctype tidak didukung di Internet Explorer 9 dan versi sebelumnya.


Sintaksis

Kembali properti formEnctype:

buttonObject .formEnctype

Mengatur properti formEnctype:

buttonObject .formEnctype="application/x-www-form-urlencoded,multipart/form-data,text/plain"

Nilai properti

Nilai Deskripsi
application/x-www-form-urlencoded Semua karakter dikodekan sebelum dikirim (this is default)
multipart/form-data Tidak ada karakter yang dikodekan. Nilai ini diperlukan bila Anda menggunakan bentuk-bentuk yang memiliki file kendali upload
text/plain Ruang dikonversi ke "+" simbol, tetapi tidak ada karakter khusus dikodekan

Rincian teknis

Kembali Nilai: Sebuah String, mewakili jenis konten yang digunakan untuk mengirimkan formulir ke server

Contoh lebih

Contoh

Ubah nilai formenctype atribut tombol dari "text/plain" untuk "application/x-www-form-urlencoded" :

document.getElementById("myBtn").formEnctype = "application/x-www-form-urlencoded";
Cobalah sendiri "

Contoh

Contoh lain untuk kembali properti formEnctype:

var x = document.getElementById("myBtn").formEnctype;
Cobalah sendiri "

Pages terkait

Referensi HTML: HTML <button> atribut formenctype


<Tombol Object