• html


    1: 骨架:html:5    /     !   +    tab

    2: 锚点:<a href="#tig">我的标题</a>----------<h3 id = "tig">我的内容</h3>

    3: <base target="_blank">放在head标签中

    4: label标签:

    <label> 输入账号: <input type="text" /> </label> <br />
    <label for="two"> 输入账号: <input type="text" id="two"/></label>
    <hr />
    (1). 用lalbe 直接进行包裹input 就可以了
    (2). 如果label里面有多个表单,想定位到某个 可以通过for id 的格式来进行

    5: html5新增的input type类型

    邮箱: <input type="email"  placeholder="请输入您的邮箱" /> <!-- aa@aa.com --> <br />
    手机: <input type="tel" /> <!-- 手机格式 数字 --> <br />
    数字: <input type="number" /> <!-- 只能 是 数字 --> <br />
    url: <input type="url" /> <!-- 网址格式的 --> <br />
    搜索: <input type="search" /> <!-- 搜索思密达 --> <br />
    区域: <input type="range" /> <!-- 区域 奥哈药 滑块 --> <br />
    时间: <input type="time" /> <!--小时 分钟 --> <br />
    年月日: <input type="date" /> <!--获得年月日 --> <br />
    月份: <input type="month" /> <!--获得年月 --> <br />
    星期: <input type="week" /> <!--获得周 --> <br />
    颜色: <input type="color" /> <!-- 颜色 --> <br />

     

    6: datalist

    <label>请输入您的姓名:

      <input type="text" placeholder = "请输入您的名字" list="useer"/>

    </label>
    <datalist id="useer">
      <option>name1</option>
      <option>name2</option>
    </datalist>

    7: 插入视频

    <embed src='shipin.swf' allowFullScreen='true' quality='high' width='480' height='400' align='middle' allowScriptAccess='always' type='application/x-shockwave-flash'></embed>

    <video controls autoplay>
      <source src="mp4.mp4"/>
      <source src="movie04.ogg"/>
      您的浏览器不支持视频播放
    </video>


    插入音频

    <audio controls autoplay>

      <source src="bgsound.mp3" />
      <source src="music.ogg" />
      您的浏览器不支持播放声音
    </audio>

  • 相关阅读:
    网易前端规范
    为什么很多网页里不直接用script标签引入JS文件,而是通过函数新建script,然后添加属性,再来引入呢?
    jQuery报错:Uncaught ReferenceError: $ is not defined
    PHP获得网页源码
    JAVA获取网页源码
    ctci(1)
    Hanoi
    计算多选框打勾的数目
    ThreadLocalClient小应用
    ajax动态刷新下拉框
  • 原文地址:https://www.cnblogs.com/pxxdbk/p/12557242.html
Copyright © 2020-2023  润新知