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

3.1 表格概述

3.1.2 表格的基本语法

<table>
			<caption>23软件一班</caption>
			<tr>
				<th>序号</th>
				<th>姓名</th>
			</tr>
			<tr>
				<td>01</td>
				<td>吴111</td>
			</tr>
		</table>


3.2 表格属性的设置

3.2.2 表格的宽度和高度属性

	<table width="700" height="150" border="1">

 用百分比:

	<table width="70%" height="20%" border="1">

3.2.3 表格背景颜色与表格图像属性

<table width="70%" height="20%" border="1" bgcolor="#99cccc" >

改背景

	<table width="70%" height="20%" border="1" background="img/a.png">

改边框

<table width="70%" height="20%" border="1" backcolord="#3366ff">

左,上为亮边框 右,下为暗

3.2.4 表格边框样式属性

frame :控制外边框

rules:控制内边框

<table width="70%" height="20%" border="1" backcolord="#3366ff" frame="hsides" rules="none">


3.2.5 表格单元格间距、单元格边距属性

<table  border="1" >
			<caption>23软件一班</caption>
			<tr>
				<th>序号</th>
				<th>姓名</th>
			</tr>
			<tr>
				<td>01</td>
				<td>吴111</td>
			</tr>
		</table>
		<table  border="1" cellspacing="5">
			<caption>23软件一班</caption>
			<tr>
				<th>序号</th>
				<th>姓名</th>
			</tr>
			<tr>
				<td>01</td>
				<td>吴111</td>
			</tr>
		</table>
		<table  border="1" cellpadding="5">
			<caption>23软件一班</caption>
			<tr>
				<th>序号</th>
				<th>姓名</th>
			</tr>
			<tr>
				<td>01</td>
				<td>吴111</td>
			</tr>
		</table>


3.2.6 表格水平对齐属性

<table  border="1" align="right">

设置表格内容位置:

<tr align="center">
				<th>序号</th>
				<th>姓名</th>
			</tr>
			<tr align="right">
				<td>01</td>
				<td>吴111</td>
			</tr>

valign:垂直方向 top 上/middle 中/bottom 下
3.2.7 设置表格的(tr)标记行的属性

tr:设置列
3.2.8 设置单元格的属性

td:设置格
3.2.9 表格单元格跨行、跨列属性

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
	</head>
	<body>
		<h3 align="center">设置单元格跨列、跨行属性</h3>
				<table border=" 1" width=" 500px" align="center" bordercolor="#3366ff">
				<caption>专业研讨会日程安排</caption>
				<tr align= " center" >
					<td colspan="2">上午</td>
					<td colspan="2">下午</td>
				</tr>
				<tr >
					<td>8:00-10:00</td>	
					<td>10:10-12:00</td>
					<td>14:00-16:00</td>
					<td>16:10-18:00</td>						
				</tr>
				<tr align=" center" >
					<td rowspan="2">学校领导讲话 </td>
					<td>大会主题报告</td>		
					<td>行业企业专题报告</td>
		   		    <td rowspan="2">总结报告</td>
				</tr>
				<tr align=" center"' >
					<td>专家报告</td>
					<td>分组讨论</td>	
				</tr>
				<tr align =" center" >
					<td colspan="4">全天参观人工智能实训中心</td>
				</tr>
				</table>	
	</body>
</html>


3.3 表格嵌套

<table  border="1" cellpadding="5">
			<tr>
				<td>课程表</td>
			</tr>
			<tr>
				<td>
					<table  border="1" cellpadding="5">
						<tr>
							<td>星期一</td>
							<td>星期二</td>
						</tr>
					</table>
				</td>
			</tr>
		</table>


3.4 表单

<form name="form1" method="post" action=""enctpe="text/plain">
		</form>

name:姓名

method:get/post 发送方式

action:发送地址

enctpe:文件格式
3.4.1 表单标记
3.4.2 定义域和域标题
3.4.3 表单信息输入

<form name="form1" method="post" action=""enctpe="text/plain">
			用户名 <input  type="text" name="user"/>
			用户类型 <input  type="text" name="usertype" value="普通用户" readonly/>
			密码<input type="password" name="possword"/>
			<input type="checkbox" name="n1" value="跳舞" checked>跳舞
			<input type="checkbox" name="n2" value="篮球">篮球
			<input type="checkbox" name="n3" value="足球">足球
			<input type="checkbox" name="n4" value="唱歌">唱歌
		</form>

readonly :不可修改       checked:提前选择
3.4.3.4 单选按钮

性别
			<input type="radio" name="sex" value="男"/>男
			<input type="radio" name="sex" value="女"/>女


3.4.3.5 图像按钮

<input  type="image" name="start" src="img/a.pngs"/>


3.4.3.6 提交按钮

<input type="submit" name="submit" value="登陆"/>


3.4.3.7 重置按钮

<input type="reset" name="rest" />


3.4.3.8 普通按钮

<input type="button" name="button" value="注册" onclick="javascript:alert('注册用户')"/>


3.4.3.9 文件选择框

<input  type="file" name="file"/>


3.4.3.10 隐藏框

<input type="hidden" name="abc" value="123"/>


3.4.4 多行文本输入框

<textarea name="info" rows="4" cols="50"></textarea>


3.4.5 下拉列表框

	<select name="abc">
				<option value="s1">前端</option>
				<option value="s2">后端</option>
				<option value="s3">运维</option>
			</select>


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

案例1:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>达维工作室——联系我们</title>
				<style type= "text/css">
				.chu {
				font-weight:bold;
				}
				.zi1 {
				font-family :"微软雅黑";
				font-size:20px;
				font-weight:bold;
				color:#ED630A;
				}
				.zi2 {
				font-family:"微软雅黑";
				font-weight:bold;
				color:#F60;
				text-decoration:underline;
				}
				.zibai {
				font-fnumily :"微软雅黑";
				color:#FFF;
				}
				body {
				background-image:url(img/bj.jpg)
				}
				</style>
	</head>
	<body background:url("img/bj.jpg");>
		<table width="1190" border="0" cellpadding="0" cellspacing="0">
						<tr>
							<td>
								<table width="1190" border="0" align="center" cellpadding="0" cellspacing="5">
									<tr>
									<td width= "100" align="center" valign="middle" bgcolor="#FFFFFF">
									< img src="img/logo.jpg" alt="" width="100" height="63"/></td>
									<td width="100" align="center" valign="middle" bgcolor="#FFFFFF" class="zi1">网站首页</td>
									<td width="100" align="center" valign="middle" bgcolor="#FFFFFF" class="zi1">关于我们</td>
									<td width="100" align="center" valign="middle" bgcolor="#FFFFFF" class="zi1">团队作品</td>
									<td width="100" align="center" valign="middle" bgcolor="#FFFFFF" class="zi1">相关作品</td>
									<td width="100" align="center" valign="middle" bgcolor="#FFFFFF" class="zi1">设计理念</td>
									<td width="100" align="center" valign="middle" bgcolor="#FFFFFF" class="zi1">人物介绍</td>
									<td width="100" align="center" valign="middle" bgcolor="#FFFFFF" class="zi1">联系我们</td>
									</tr>
								</table>
							</td>
						</tr>
					<tr>
						<td>
							<table width="100%" border="0" cellspacing="20" cellpadding="0">
								<tr>
									<td height="318">&nbsp;</td>
									<td width= "280" valign="top">
									<table width="100%" border="0"cellspacing="20" cellpadding="20">
								<tr>
									<td height= "30" align="center" bgcolor="#FFFFFF" class="zi1">联系我们</td>
									</tr>
								<tr>
									<td height="196" bgcolor="#FFAFO3">
																		<p class="zibai">地址:广东省江门市XXXXXXXXX<br/>
																		电话:0750-XXXXXX<br/>
																		传真:0750-XXXXXX<br/>
																		QQ:123456778<br/>
																		电子邮箱:<br />
																		123@163.com<br />
																		工作室网站:<br />
																		www.XXXX.com</p >
																								</td>
																							</tr>
																						</table>
																					</td>
																								<td width="280"valign="top">
																								<table width="100%" border="O" cellspacing="0" cellpadding="20">
																								<tr>
																								<td height="30" align="center" bgcolor="#FFFFFF" class="zi1">关于我们</td>
																							</tr>
																						<tr>
																							<td height="278" valign="top" bgcolor="#FC880D"><p class="zibai">达维工作室是专业
																								从事互联网相关开发的公司。<br />
																								专门提供全方们的优质服务和最专业的网站建设方案为企业打造全新电子商务平台。<br
																								/>
																								达维工作室成立于2014年,已经成为国内著名的网站建设提供商。多年的风雨历程······
																								</p >
																								<p class="zibai">&nbsp;</p >
																								<p class="zibai chu">更多&gt;&gt;</p >
																							<td>
																						</tr>
																					</table>
																				</td>
																					<td width="280">
																						<table width="100%" border="O" cellspacing="0" cellpadding="20">
																							<tr>
																								<td height="30" align="center" bgcolor="#FFFFFF" class="zi1">团队合作</td>
																								</tr>
																								<tr>
																									<td height="332" valign="top" bgcolor="#66A00E"><p class="zi2">我们的团队:
																				</p >
																									<p class="zibai">成员都具有多年的实际设计工作经验,满足客户的国际化需去
																									设计师创意的思维模式,提供最适合的设计方案。</p >
																									<p class="zi2">我们的承诺:</p >
																									<p class="zibai">本工作室设计与制作的网站均属原创、不套用网上的任何模后
																									根据每个公司特点,设计出属于客户·····</p >
																									<p class="zibai">&nbsp;</p >
																									<p class="zibai chu">更多 &gt;&gt;</p >
																									</td>
																									</tr>
																									</table>
																									</td>
																									</tr>
																									</table>
																									</td>
																									</tr>
								</table>
									</body>
								</html>

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>用户注册信息</title>
		<style type="text/css">
		fieldset {
		 width:700px;
		}
		</style>
	</head>
	<body>
		<form action=" " method ="post" enctype =" multipart/form-data" name =" forml" id ="form1">
		<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=" textfield" id=" textfield" /></td>
	    </tr>
	    <tr>
		<td width="200" align="right">密码:</td>
		<td><input type = " password" name =" textfield2" id=" textfield2" /></td>
	    </tr>
	    <tr>
		<td width="200" align="right">确认密码:</td>
		<td><input type = " password" name = " textfield3" id=" textfield3" /></td>
		</tr>
		<tr>
		<td width="200" align="right">性别:</td>
		<td><input name = "radio" type="radio" id="radio" value="radio" checked="checked" />
		男<img src="img/Male.gif" width="22" height="21" align="absmiddle" />
		<input type = "radio" name="radio" id="radio2" value="radio2" />
		女<img src ="img/Female.gif" width="23" height="21" align="absmiddle" /></td>
	    </tr>
		<tr>
		<td width="200" align="right">出生年月:</td>
		<td><input name = " textfield4" type = " text" id=" textfield4" size="12" />年<select name=" select" id=" select" >
		<option>1</option>
		<option>2</option>
		<option>3</option>
		<option>4</option>
		<option>5</option>
		<option>6</option>
		<option>7</option>
		<option>8</option>
		<option>9</option>
		<option>10</option>
		<option>11</option>
		<option>12</option>
		</select>
		月</td>
		</tr>
		<tr><td width="200" align="right">业余爱好:</td>
		<td><input type="checkbox" name="checkbox" id="checkbox" />看书
		<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="fileField" /></td>
				</tr>
				<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、付费专栏及课程。

余额充值