當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML <button> formenctype屬性用法及代碼示例


HTML <button> formenctype屬性用於指定提交到服務器時應該對表單數據進行編碼。此屬性將覆蓋formencrypt屬性的函數。它隻能與Button type = “submit”一起使用。

用法:

<button type="submit" formenctype="value">

屬性值:此屬性包含以下列出的三個值:


  • application/x-www-form-urlencoded:它是默認值。在發送到服務器之前,它將對所有字符進行編碼。它將空格轉換為+符號,並將特殊字符轉換為其十六進製值。
  • multipart/form-data:此值不編碼任何字符。
  • text/plain:此值將空格轉換為+符號,但不轉換特殊字符。

例:本示例說明了<butoon>元素中enctype屬性的用法。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>  
     Button Formenctype attribute 
    </title> 
</head> 
  
<body style="text-align:center"> 
    <h1 style="color:green">GeeksforGeeks</h1> 
    <h4>HTML Button Formenctype Attribute</h4> 
    <form action="#" method="post" 
          formenctype="multipart/form-data"> 
        First name:
        <input type="text" name="fname"> 
        <br><br> 
        Last name:
        <input type="text" name="lname"> 
        <br><br> 
        Address:
        <input type="text" name="Address"> 
        <br><br> 
        <button type="submit"> 
          submit without character encoding  
        </button> 
        <br> 
        <br> 
        <button type="submit" formenctype="text/plan"> 
          submit with character encoding 
        </button> 
    </form> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML <button> formenctype屬性支持的瀏覽器:

  • 穀歌瀏覽器10.0
  • Internet Explorer 10.0
  • Firefox 4.0
  • Opera 10.6
  • Safari 5.1


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <button> formenctype Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。