1.图片热点:
  规划出图片上的一个区域,可以做出超链接,直接点击图片区域就可以完成跳转的效果。

<img src="../图片/5109de19b9c5b.jpg" width="" height="" usemap="map"  name="map" />
<map name="map">
<area shape="rect" coords="244,234,367,354" href="http://www.baidu.com" />
</map> <br/>

2.网页划区:
  在一个网页里,规划出一个区域用来展示另一个网页的内容。

<table>
<tr>
<td>
<iframe src="http://www.baidu.com" width="" height="" frameborder=""></iframe>
</td>
</tr>
</table><br />

3.网页的拼接:
  在一个网络页面内,规划出多个页面窗口,以表格拼接的形式展示出来。

4. 表单:

<form id="" name="" method="post/get" action="负责处理的服务端">

id不可重复,name可重复,get提交有长度限制,并且编码后的内容在地址栏可见,

post提交没有长度限制,且编码后内容不可见。

</form>

(1)文本输入

  文本框<input type="txt" name="" id="" value="" />

  密码框<input type="password" name="" id="" value="" />

  文本域<textarea name="" id="" cols=""(字符多少) rows=""(几行高)></textarea>

  隐藏域<input type="hidden" name="" id="" value="" />

<form>
文本框<input type="txt" value="文本框" /><br />
密码框<input type="password" value="密码框" /><br />
隐藏域<input type="hidden" value="隐藏域" /><br />
文本域<textarea cols="" rows="" name="">
Ben Nevis is the highest mountain in Britain (,343m).
本尼维斯山为英国最高峰,海拔1,343米。
Severn River is the longest river in Britain (338km).
塞文河是英国最长的河流。全长338公里。
Thames River is the second longest and most important river in Britain. (336km).
泰晤士河是英国第二大河,也是英国最重要的河。全长336公里。
Lough Neagh is the largest lake in Britain which is located in Northern Ireland. ( square kilometres).
讷湖(内伊湖)是英国最大的湖,位于北爱尔兰。面积为396平方公里。
</textarea><br />

(2)按钮

  提交按钮<input type="submit" name="" id="" disabled="disabled" value="" />点击后转到form内的提交服务器的地址

  重置按钮<input type="reset" name="" id="" disabled="disabled" value="" />

  普通按钮<input type="button" name="" id="" disabled="disabled" value="" />

  图片按钮<input type="image" name="" id="" disabled="disabled" src="图片地址" />

  disabled使按钮失效

  enable使按钮可用

提交按钮(不可用):<input type="submit" value="提交" disabled="disabled" /><br />
提交按钮(可用):<input type="submit" value="提交" /><br />
重置按钮:<input type="reset" value="重置" /><br />
普通按钮:<input type="button" value="普通" /><br />
图片按钮:<input type="image" src="../图片/u=289739846,1709449352&fm=21&gp=0.jpg" width="" height="" /><br />

(3)选择输入

  单选按钮组<input type="radio" name="" checked="checked" value="" />

  name的值用来分组,value的值看不见,提交给程序用的,checked设置默认选项。

  复选框组<input type="checkbox" name="" checked="checked" value="" />

  文件上传<input type="file" name="" id="" />

          <lable for=""></lable>

        (lable标签为input元素定义标注。

           lable元素不会向用户呈现任何特殊效果,不过,他为鼠标用户改进了可用性。如果您在lable元素内点击文本,就会触发此控件。

           就是说,当用户选择该标签时,浏览器会 将焦点转到和标签相关的表单控件上。

           lable标签的for属性应当与相关元素的id属性相同。)

单选择按钮:&nbsp;&nbsp;     <input type="radio"  checked="checked" />  默认已选<br />
单选择按钮: <input type="radio" name="a"/>男
<input type="radio" name="a"/>女<br />
复选框组:<input type="checkbox" checked="checked" /> // 默认已选 <br />
举例: <input type="checkbox"/> 可乐
<input type="checkbox" />雪碧
<input type="checkbox" />牛奶
<input type="checkbox" />咖啡
<br/>
文件上传:<input type="file" /> <br />

(4)下拉列表框

  <select name="" id="" size="" multiple="multiple">

  --size为1时,为菜单;>1时,为列表。multiple为多选。

    <option value="值">内容1</option>

    <option value="值" selected="selected">内容2</option>

    --selected,设为默认

    <option value="值">内容3</option>

  </select>

下拉列表框:
<select size="">
<option>香蕉</option>
<option>葡萄</option>
<option>火龙果</option>
<option>菠萝</option>
</select>
<br/><br /> <select size="" multiple="multiple">
<option>香蕉</option>
<option>葡萄</option>
<option>火龙果</option>
<option>菠萝</option>
<option>苹果</option>
<option>橙子</option>
</select>

(5)标签

<label></label>

字段集 (一堆label)

<fieldset></fieldset>

表单练习题:邮箱注册界面(直接贴自己做好的吧。)

<body leftmargin="" rightmargin="">

<table width="" height="" border="" cellpadding="" cellspacing="" bgcolor="#0080C0">
<tr height="">
<td width="">邮箱:</td>
<td width=""> <form> <input type="txt" value="" /></form></td>
</tr> <tr >
<td width="" >&nbsp;</td>
<td width="" ><font>
需要通过邮箱激活帐户,不支持sohu,21cn,sogou的邮箱
</font></td>
</tr> <tr height="">
<td width=""> 登录用户名:</td>
<td> <form> <input type="txt" value="" /></form></td>
</tr> <tr>
<td></td>
<td> 仅在登陆时使用,字符不少于4个</td>
</tr> <tr >
<td width="">显示名称:</td>
<td> <form> <input type="txt" value="" /></form></td>
</tr> <tr>
<td></td>
<td>即昵称,字符数不少于2个</td>
</tr>
<tr>
<td width="">密码:</td>
<td><form> <input type="password" value=""/></form></td>
</tr> <tr>
<td width="">确认密码:</td>
<td><form><input type="password" value=""/></form></td>
</tr> <tr>
<td></td>
<td>至少8位,必须包含字母、数字、特殊字符</td>
</tr> <tr>
<td width="">性别:</td>
<td><form> <input type="radio" name="a" value="" /> 男
<input type="radio" name="a" value="" /> 女</form></td>
</tr> <tr>
<td width="">喜好:</td>
<td><form > <select size="">
<option > 听音乐</option>
<option>看电视</option>
<option>旅游</option>
<option>跳舞</option>
<option>其他</option>
</select></form></td>
</tr> <tr>
<td></td>
<td> <form> <input type="submit" value="注册" /></form> </td>
</tr>
</table>

3月20日html(二) 图片热点,网页划分,表单的更多相关文章

  1. 厦门Uber优步司机奖励政策(12月14日到12月20日)

    滴快车单单2.5倍,注册地址:http://www.udache.com/ 如何注册Uber司机(全国版最新最详细注册流程)/月入2万/不用抢单:http://www.cnblogs.com/mfry ...

  2. 西安活动 | 4月20日「拥抱开源,又见.NET :云时代 • 新契机」

    云计算日渐兴起,成为提升企业效率和生产力的最终解决方案,而云时代也为软件开发模式带来了翻天覆地的变化.可以说 .NET Core就是这个时代催生的产物.自2016年 .NET Core 1.0 发布以 ...

  3. 北京Uber优步司机奖励政策(1月20日)

    滴快车单单2.5倍,注册地址:http://www.udache.com/ 如何注册Uber司机(全国版最新最详细注册流程)/月入2万/不用抢单:http://www.cnblogs.com/mfry ...

  4. 北京Uber优步司机奖励政策(12月20日)

    滴快车单单2.5倍,注册地址:http://www.udache.com/ 如何注册Uber司机(全国版最新最详细注册流程)/月入2万/不用抢单:http://www.cnblogs.com/mfry ...

  5. 北京Uber优步司机奖励政策(9月14日~9月20日)

    滴快车单单2.5倍,注册地址:http://www.udache.com/ 如何注册Uber司机(全国版最新最详细注册流程)/月入2万/不用抢单:http://www.cnblogs.com/mfry ...

  6. 成都Uber优步司机奖励政策(1月20日)

    滴快车单单2.5倍,注册地址:http://www.udache.com/ 如何注册Uber司机(全国版最新最详细注册流程)/月入2万/不用抢单:http://www.cnblogs.com/mfry ...

  7. 广州Uber优步司机奖励政策(12月14日到12月20日)

    滴快车单单2.5倍,注册地址:http://www.udache.com/ 如何注册Uber司机(全国版最新最详细注册流程)/月入2万/不用抢单:http://www.cnblogs.com/mfry ...

  8. 武汉Uber优步司机奖励政策(12月14日到12月20日)

    滴快车单单2.5倍,注册地址:http://www.udache.com/ 如何注册Uber司机(全国版最新最详细注册流程)/月入2万/不用抢单:http://www.cnblogs.com/mfry ...

  9. 天津Uber优步司机奖励政策(12月14日到12月20日)

    滴快车单单2.5倍,注册地址:http://www.udache.com/ 如何注册Uber司机(全国版最新最详细注册流程)/月入2万/不用抢单:http://www.cnblogs.com/mfry ...

随机推荐

  1. iOS开发——C篇&预处理

    其实在C语言的远行过程中,有这样一个流程, 编译:C----〉可执行文件(可以运行的) 1:.C------.i 预处理(之前和之后还是C语法)2: .i-------.s 编译(之前是C语法,之后是 ...

  2. CSS jQuery 图片全屏切换

    <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8&quo ...

  3. ubuntu设置系统时间与网络时间同步

    ubuntu设置系统时间与网络时间同步   Linux的时间分为System Clock(系统时间)和Real Time Clock (硬件时间,简称RTC).   系统时间:指当前Linux Ker ...

  4. CentOS下安装postgresql

    一.说明 postgresql版本:9.4.1 安装包: postgresql94-server-9.4.1-1PGDG.rhel6.x86_64.rpm postgresql94-libs-9.4. ...

  5. [LeetCode 110] - 平衡二叉树 (Balanced Binary Tree)

    问题 给出一棵二叉树,判断它是否在高度上是平衡的. 对于本问题,高度上平衡的二叉树定义为:每个节点的两棵子树的深度差永远不大于1的一棵二叉树. 初始思路 根据定义,思路应该比较直接:递归计算每个节点左 ...

  6. php5,Apache在windows 7环境搭建

    主要是参考以下文章: http://www.cnblogs.com/Yogurshine/archive/2013/05/24/3097343.html http://jingyan.baidu.co ...

  7. 设计模式(八):Bridge桥接模式 -- 结构型模式

    1. 概述 在软件系统中,某些类型由于自身的逻辑,它具有两个或多个维度的变化,那么如何应对这种“多维度的变化”?如何利用面向对象的技术来使得该类型能够轻松的沿着多个方向进行变化,而又不引入额外的复杂度 ...

  8. 动态规划 DP

    10.1.5.253 1143 数字金字塔#include <iostream> #include<string.h> using namespace std; int a[1 ...

  9. 状态模式(State) 笔记

    让一个对象随着内部的状态改变而发生改变. 状态的两种切换方式: 1) 完全交给Context类切换, 2) 给Context初始化状态,其他的切换根据每一个State类进行切换,Context对象不再 ...

  10. 遍历Jenkins全部项目的配置

    随着任务的增多.须要一个脚本能够检查全部的jenkins project的配置.比方提取任务计划配置,开发人员信息等. 首先要能够得到全部的project名称. 能够通过REST API实现: htt ...