x
 
<!DOCTYPE html>
<html>
<body>
<p>此例包含一个带有提交按钮的表单,该按钮提交没有字符编码(文本/纯文本)的表单:</p>
<form action="/action_page_binary.asp" method="post">
  名字:<input type="text" name="fname" value="Bill"><br>
  <input type="submit" id="mySubmit" formenctype="text/plain" value="提交">
</form>
<p>请点击“试一试”按钮,更改上面提交按钮的 formenctype 属性的值。</p>
<p><b>注意:</b>请在点击“试一试”按钮前后点击提交按钮。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  document.getElementById("mySubmit").formEnctype = "application/x-www-form-urlencoded";
  document.getElementById("demo").innerHTML = "formenctype 属性的值已从“text/plain”更改为“application/x-www-form-urlencoded”。";
}
</script>
</body>
</html>