最新的Web開發教程
 

Button formEnctype Property

<按鈕對象

返回其發送到服務器之前,表單數據應該如何編碼:

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

x的結果可能是:

text/plain
試一試»

定義和用法

所述formEnctype屬性設置或返回的值formenctype一個按鈕的屬性。

所述formenctype屬性指定如何形式數據應該將其發送到服務器之前進行編碼。 此屬性將覆蓋表單的enctype屬性。

所述formenctype屬性僅用於按鈕類型為“提交”。

注意: formenctype屬性是新的<button>在HTML5元件。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

該formEnctype屬性在所有主流瀏覽器的支持。

注:在Internet Explorer 9及更早版本不支持formEnctype財產。


句法

返回formEnctype屬性:

buttonObject .formEnctype

設置formEnctype屬性:

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

屬性值

描述
application/x-www-form-urlencoded 之前發送的所有字符進行編碼(this is default)
multipart/form-data 任何字符進行編碼。 這個值,當你使用的是有一個文件上傳控件的形式要求
text/plain 空格被轉換為"+"符號,但沒有特殊的字符被編碼

技術細節

返回值: 一個字符串,表示用於將形式提交給服務器的內容的類型

更多示例

改變的值formenctype從按鈕的屬性"text/plain""application/x-www-form-urlencoded"

document.getElementById("myBtn").formEnctype = "application/x-www-form-urlencoded";
試一試»

在返回的formEnctype財產又如:

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

相關頁面

HTML參考: HTML <button> formenctype屬性


<按鈕對象