欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM enctype 屬性

定義和用法

enctype 屬性可設置或返回用于編碼表單內(nèi)容的 MIME 類型。

如果表單沒有 enctype 屬性,那么當提交文本時的默認值是 "application/x-www-form-urlencoded"。

當 input type 是 "file" 時,值是 "multipart/form-data"。

語法

formObject.encoding=encoding

實例

下面的例子可返回表單的編碼類型:

<html>
<head>
<script type="text/javascript">
function showEnctype()
  {
  var x=document.getElementById("myForm")
  alert(x.enctype)
  }
</script>
</head>
<body>

<form id="myForm" enctype="application/x-www-form-urlencoded">
Name: <input type="text" value="Mickey Mouse" />
<input type="button" onclick="showEnctype()"
value="Show enctype" />
</form>

</body>
</html>