2018.7.26学习内容
Posted yin15225370163
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2018.7.26学习内容相关的知识,希望对你有一定的参考价值。
一. 制作填写信息的表格
二.学习一些表格的基本元素。
<input type=“text”/> <!– 可编辑文本域 -->
注input中的name属性
name 属性规定 input 元素的名称。
name 属性用于对提交到服务器后的表单数据进行标识,或者在客户端通过 javascript 引用表单数据。
只有设置了 name 属性的表单元素才能在提交表单时传递它们的值。
<input type=“password”/> <!– 密码框 -->
<input type=“checkbox”/> <!– 多选框 -->
<input type=“radio”/> <!– 单选框 -->
<input type=“button”/> <!– 按钮 -->
<input type=“file”/> <!– 文件浏览 -->
<textarea cols=“50” rows=“4”> </textarea> <!– 文本域-->
<select> <option></option></select> <!– 下拉控件-->
4种按钮的写法
<input type="sumbit" value="内容" /> <button>内容</button> <input type="reset" value="内容" /> <input type="button" value="内容" />
<tr>标签标示行
<td>标示单元格
table属性border表示边框
table属性width 表示表格宽度
table属性height表示表格高度
table属性cellpadding表示表格边与内容的距离
table属性cellspacing表示表格边与边的距离
td属性colspan表示单元格跨列
td属性rowspan表示单元格跨行
以上是关于2018.7.26学习内容的主要内容,如果未能解决你的问题,请参考以下文章