zoukankan      html  css  js  c++  java
  • 网页 HTML表单

    今天,我首先先学习了图片热点和在原来页面嵌入其他页面。
    图片热点:<img src="" usemap="#ditu"/>
    <map name="ditu">
    <area shape="rect" coords="196,92,296,192" href="http://www.baidu.com"/>
    </map>
    在原来页面嵌入其他页面:
    <iframe src="其他页面的地址" width="" height="" frameborder="0" scrolling="0">
    </iframe>
    接下来,我学习了本部分的重点内容——表单,<form></form>。表单主要包括三种类型:文本输入、按钮、选择输入。
    1.文本输入
    文本框<input type="text"/>
    密码框<input type="password"/>
    文本域<textarea cols="" rows=""></textarea>
    2.按钮
    提交按钮<input type="submit" value="提交"/>
    重置按钮<input type="reset" value="重置"/>
    普通按钮<input type="button" value=""/>
    图片按钮<input type="image" src="图片地址"/>
    3.选择输入
    单选按钮组<input type="redio" name="" />
    复选框组<input type="checkbox"/>
    下拉列表框
    <select size="1">
    <option>内容1</option>
    <option>内容2</option>
    <option>内容3</option>
    </select>

  • 相关阅读:
    js实现中文转拼音
    JS中的call、apply、bind方法
    python 过滤html方法
    css 多出一行或多行后显示...的方法
    js 中文排序
    eclipse小技巧
    npm安装及webpack打包小demo
    zan扩展安装
    vagrant安装centos7
    centos7 nginx访问目录403解决
  • 原文地址:https://www.cnblogs.com/hongsen3/p/5759087.html
Copyright © 2011-2022 走看看