zoukankan      html  css  js  c++  java
  • 表格、表单元素

    1.表格

    <table border="1px"  width="500px"   height="500px">

      <td>

        <tr> </tr>

      </td>

    colspan:合并列     rowspan:合并行

    2.表单

    <form action="#"  method="post">

      <input type="表单类型" name=“键” value=“值”>

     </form>

    文本:text  密码:password  文本域:hidden

    提交按钮:submit     重置按钮:reset    普通按钮:button

    单选:radio  多选:checkbox

    file 文件上传

    下拉框:

     <select name="值">

       <opion value=“值1”">名字</opion>

      <opion value=“值1”">名字</opion>

      <opion value=“值1”">名字</opion>

     </select>

    默认值selected

    视频 video

    <a href="day04-book.html" target="6">图书</a>
        <a href="day04-img.html" target="6">图片</a>
        <a href="day04-news.html" target="6">新闻</a>
        <hr>
        <iframe src="https://www.taobao.com" frameborder="1"  name="6" width="800px" height="100px"></iframe>

  • 相关阅读:
    webpack基本使用
    vue-路由-显示名称
    vue-父组件和路由
    vue-路由
    vue-父子组件和ref
    vue-组件
    go-面向对象编程(上)
    JavaScript的历史
    vue-列表动画
    钩子函数实现小球弹落
  • 原文地址:https://www.cnblogs.com/sy130908/p/11028053.html
Copyright © 2011-2022 走看看