欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

学表单的第二天

程序员文章站 2022-07-04 09:27:47
今天是学表单的第二天,主要增加了几个html5的属性,如: input type="..." color file range email number 还学了表单中post和g...
今天是学表单的第二天,主要增加了几个html5的属性,如:

input type="..."

color

file

range

email

number

还学了表单中post和get的区别:

get: - 从指定的资源请求数据。

post - 向指定的资源提交要被处理的数据.

有关 post 请求的其他一些注释:

post 请求不会被缓存

post 请求不会保留在历史记录中

post 不能被收藏为书签

post 请求对数据长度没有要求

还有细讲了option标签和几个新标签

<optgroup>

<datalist>

<fieldset>

<meter>

用<ouput>标签简单实现一个计算器

<body>
<form action="1.php" oninput="result.value=(+sum1.value)+(+sum2.value)">
<input type="number" name="sum1" />
+
<input type="number" name="sum2" />
=
<output for="sum1 sum2" name="result"></output>
<br />
<input type="submit" value="提交"/>
</form>
</body>