本文介绍了HTML表单的默认enctype是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

说我有保存一些输入的表格:

Say I've got that form holding some inputs:

<form action="demo_post_enctype.asp" method="post" >
  First name: <input type="text" name="fname"><br>
  Last name: <input type="text" name="lname"><br>
  <input type="submit" value="Submit">
</form>

如果我提交以下表格:浏览器使用哪种编码类型?

If I submit this form: which enctype does the browser use?

是否存在定义明确的默认类型?
还是每个浏览器都选择它自己的enctype(当然是从三个允许的enctype中选择)?

Is there a well-defined default type?
Or does every browser pick it's own enctype (out of the three allowed ones, of course)?

推荐答案

- HTML 5

- HTML 4

- HTML 3.2

这篇关于HTML表单的默认enctype是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 08:00