当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Form enctype属性用法及代码示例


HTML DOM Form enctype 属性与表单元素的 enctype 属性相关联。此属性设置或返回表单的 enctype 属性值。 enctype 属性仅在方法属性值为 “POST” 时使用。 enctype 属性用于指定要提交的表单中的数据应该被编码。

用法

以下是语法 -

设置 enctype 属性 -

formObject.enctype = encoding

在这里,编码可以是“application/x-www-form-urlencoded”,这意味着所有字符在发送之前都被编码,这是默认编码。

另一个是“multipart/form-data”,它指定不应编码任何字符,用于上传文件到服务器。

第三种编码是 “text/plain”,它只将空格转换为 “+” 符号,没有其他编码。不应使用 text./plain 编码,因为它不安全。

示例

让我们看一个 Form enctype 属性的例子 -

<!DOCTYPE html>
<html>
<head>
<style>
   form{
      border:2px solid blue;
      margin:2px;
      padding:4px;
   }
</style>
<script>
   function changeEnc() {
      document.getElementById("FORM1").enctype = "application/x-www-form-urlencoded";
      document.getElementById("Sample").innerHTML = "The enctype attribute value is now 'application/x-www-form-urlencoded' ";
   }
</script>
</head>
<body>
<h1>Form enctype property example</h1>
<form id="FORM1" method="post" enctype="multipart/form-data">
<label>User Name <input type="text" name="usrN"></label> <br><br>
<label>Password <input type="password" name="pass"></label>
</form>
<br>
<button onclick="changeEnc()">CHANGE</button>
<p id="Sample"></p>
</body>
</html>

输出

这将产生以下输出 -

单击更改按钮 -

在上面的例子中 -

我们创建了一个表单,id=“Form1”,method=“post”,enctype 设置为 “multipart/form-data”。 enctype 指定表单数据的编码类型,在我们的例子中设置为 “multipart/form-data”。此编码对于将文件上传到服务器很有用。该表单也包含一个文本字段和一个密码字段。

<form id="FORM1" method="post" enctype="multipart/form-data">
<label>User Name <input type="text" name="usrN"></label> <br><br>
<label>Password <input type="password" name="pass"></label>
</form>

然后我们创建了一个按钮 CHANGE,当用户点击时,它将执行 changeEnc() 方法 -

<button onclick="changeEnc()">CHANGE</button>

changeEnc() 方法使用 getElementById() 方法获取表单元素,并将其 enctype 属性设置为“application/x-www-form-urlencoded”。这使得我们所有的字符都被编码,并且是默认的 enctype 编码。使用 ID 为 “Sample” 的段落的 innerHTML 属性,我们通过向用户显示文本来显示此更改 -

function changeEnc() {
   document.getElementById("FORM1").enctype = "application/x-www-form-urlencoded";
   document.getElementById("Sample").innerHTML = "The enctype attribute value is now 'application/x-www-form-urlencoded' ";
}

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Form enctype Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。