第三章表格布局与表单交互

3.1 表格概述


在明确目的和受众后,接下来需要对表格的结构和主要数据进行概述。 这包括表格的标题、行列标题、数据单位等基本信息,以及表格中的关键数据和指标。 通过简要描述这些数据,可以帮助受众快速了解表格的整体内容和主要信息。


3.1.1 表格的结构

3.1.2 表格的基本语法
<table>

<tr>

<th>默认加粗</th>

</tr>

<tr>

<td></td>

</tr>

</table>标签


3.2 表格属性的设置
    <table border="1px">
            <caption>环境</caption>
            <tr>
                <th>序列</th>
                <th>序列1</th>
                <th>序列2</th>
                </tr>
            <tr>
                <td>1</td>
                <td>11</td>
                <td>111</td>
            </tr>
            <tr>
                <td>2</td>
                <td>22</td>
                <td>222</td>
                
            </tr>
            <tr>
                <td>3</td>
                <td>33</td><td>333</td>
            </tr>
        </table>


3.2.1 表格边框属性
<table border="1px">


3.2.2 表格的宽度和高度属性
<table border="1px" width="150px" height="100px">


3.2.3 表格背景颜色与表格图像属性
<table border="1px" width="150px" height="100px" bgcolor="#00ff00" background="img/jjj.jpg">


3.2.4 表格边框样式属性

3.2.5 表格单元格间距、单元格边距属性
<table cellpadding="10px" cellspacing ="10px">

cellspacing属性:单元格间距。cellpadding属性:单元格边距。


3.2.6 表格水平对齐属性
<style>
           tr {    
             text-align: center;
           }
         </style> 可以给所有tr标签设置居中  

<table  rules="all" border="1px"  bgcolor="#00ff00" background="img/jjj.jpg" width="300dp" height="200dp" align="center">表格居中      


3.2.7 设置表格的(tr)标记行的属性
<tr align="right"></tr>  右对齐

<tr align="center"></tr>居中 

<tr align="left"></tr>左对齐

valign有三个属性 top,middle,bottom分别为顶,居中,底


3.2.8 设置单元格的属性
<th align="right" valign="bottom">序列</th>


3.2.9 表格单元格跨行、跨列属性
colspan="2"跨列

rowspan="2"跨行


3.2.9.1 单元格跨行
3.2.9.2 单元格跨列
3.3 表格嵌套


3.4 表单
<form><form>


3.4.1 表单标记
3.4.2 定义域和域标题
3.4.3 表单信息输入


3.4.3.1 单行文本输入框
        <form>
            用户名:<input type="text" name="uese"/>
            密码:<input type="password" name="password"/>
        </form>


3.4.3.2 密码输入框
密码:<input type="password" name="password"/>


3.4.3.3 复选框
<form>
            姓名:<input type="text" name="name"/>
            爱好:<input type="checkbox" name="n1" value="sing" checked/>唱歌
            <input type="checkbox" name="n2" value="tt"/>跳舞
            <input type="checkbox" name="n3" value="ll"  />篮球
            <input type="checkbox" name="n4" value="cc"/>长跑
        </form>checked默认选择


3.4.3.4 单选按钮

        <form>
            性别:<input type="radio" name="sex" value="sex" checked    />男
            <input type="radio" name="sex"  value="sex"/>女
        </form>单选由radio name需要一样


3.4.3.5 图像按钮
<form >
            <input type="image" src="img/bt.jpg" name="tu" value="ttt" />    
        </form>


3.4.3.6 提交按钮
<form >
        <input type="submit" name="button" value="提交"  />
        </form>


3.4.3.7 重置按钮

<input type="reset" value="重置" />


3.4.3.8 普通按钮
<input type="button" value="普通按钮" />


3.4.3.9 文件选择框
选择文件<input type="file"/><br />


3.4.3.10 隐藏框
<input type="hidden" name="ab" value="123" />


3.4.4 多行文本输入框
            请输入您的意见<textarea name="4" id="" cols="30" rows="10"></textarea>
 


3.4.5 下拉列表框

请选择课程:
            <select >
                <option name="1">网页</option>
                <option name="1">JAVA</option>
                <option name="1">安卓</option>
                <option name="1">PS</option>
                <option name="1"></option>
            </select>


3.5 综合案例——表格与表单

————————————————

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
	</head>
	<body>
		<!DOCTYPE html>
		<html>
			<head>
				<meta charset=" UTF-8">
				<title>用户注册信息</title>
				<style type="text/css">
				fieldset{
					width:700px;
				}
				</style>
				</head>
				<body>
					<form action="" method ="post" encdype=" mulipart/om- data" name=" forml" id="from1">
					<fieldset>
					<legend>用户注册信息</legend>
					<table width="600" border="0" align="center" cellpadding="0" cellspacing="0">
				<tr>
					<td width="200" align="right">用户名:</td>
					<td><input type="text" name="texfield" id="textfield" /></td>
				</tr>
				<tr>
					<td width="200" align="right">密码:</td>
					<td><input type="password" mame="textfield2" id="textfield2"/></td>
				</tr>
				<tr>
					<td width="200" align="right">确认密码:</td>
					<td><input type="password" name= "textield3" id="textfield3"/></td>
				<tr>
				<tr>
					<td widh="200" align="right">性别:</td>
					<td><input name="radio" type="radio" id="radio" value="radio" checked= "checked"/>男
					<img src="Male.gif" width="22" heigh="21" dlign="absmidde" />
					<input type="radio" name="radio" id="radio2" value="radi2" />女
					<img src="Female.gif" width="23" heighr="21" align="abiniddle" /></td>
				</tr>
				<tr>
						<td width="200" align="right">出生年月:</td>
					<td><input name="textfield4" ype="text" id="toxtfield4" sive="12" />年
					<select name="select" id=" select">
					<option>l</option>
					<option>2</option>
					<option>3</option>
					<option>4</option>
					<option>S</option>
					<option>6</option>
					<option>7</option>
					<option>8</option>
					<option>9</option>
					<option>10</option>
					<option>11</option>
					<option>12</option>
				</select>
						月</td>
				</td>
				<tr>
					<td width="200" align="right">业余爱好:</td>
					<td><input type="checkbox" name= "checkbox" id="checkbox1">看书
					<input type="checkbox" name= "checkbox2" id="checkbox2"/>上网
					<input type= "checkbox" name="checkbox3" id="checkbox3" />打球
				</td>
				</tr>
				<tr>
					<td width="200" align="right">相片:</td>
					<td height="25"><input type="file" name= "fileField" id=" ilefField" /></td>
				</td>
				<tr>
				<td width="200" align="right">意见或建议:</td>
			<td>
				<textarea name="textarea" id= "textarea" cols="45" rows="5"></textarea>
			</td>
			</tr>
			<tr>
				<td colspan="2" align="center">
				<input type="submit" name= "button" id="button" value="提交"/>
				<input type="reset" name="button2" id="button2" value="重置"/>
			</td>
			</tr>
			</table>
			</fieldset>
		</form>
	</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值