zoukankan      html  css  js  c++  java
  • 3月20号 图片热点 网页划分 表单

    图片划分:

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

    <img src="../我/m_14_634758583539062500_36767976.jpg" usemap="cat" name="" title="这是一只猫"/>
    <map name="cat">
    <area shape="circle" coords="111,96,50" href="http://www.baidu.com/"/> 
    </map>

    网页拼接:

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

    表单:

    <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="" />

    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使按钮可用

    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属性相同。

    4.下拉列表框

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

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

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

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

        --selected,设为默认

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

      </select>

    5.标签

             <label></label>

    字段集 (一堆label

                      <fieldset></fieldset>

    <form>
    文本框:<input type="text" value="我爱你"/><br/>
    密码框:<input type="password" /><br/>
    文本域:<textarea cols="10" rows="5"/>
    </textarea><br/>
    
    <input type="submit" value="提交"/><br/>
    <input type="reset" value="重置"/><br/>
    <input type="button" value="登录"/><br/>
    <input type="image" src="../我/cms_13effb0c49d04ec7840e61ec4b497f89.jpg" height="30"/><br/>
    <input type="radio" name="sex" />男<br/>
    <input type="radio" name="sex"/>女<br/>
    <input type="checkbox"/>爆米花<br/>
    <input type="checkbox"/>可乐<br/>
    <input type="checkbox"/>奶茶<br/>
    <select size="1">
    <option>奶茶</option>
    <option>可乐</option>
    <option selected="selected">雪碧</option>
    </select>
    <select size="3"/>
    <option>你</option>
    <option>我</option>
    <option>他</option>
    <option>她</option>
    </form>
  • 相关阅读:
    常用sql经典语句
    sql创建 自定义函数返回当前日期所在月的第一天最后一天
    洗洗睡了吧啊,何必在意……费口舌不热么
    asp.net Treeview控件
    MSSQL 触发器
    Mssql 通配符
    C#实现所有经典排序算法
    asp.net Treeview
    Asp.net+json 操作类
    Queue 和Stack 的区别
  • 原文地址:https://www.cnblogs.com/Duriyya/p/5297801.html
Copyright © 2011-2022 走看看