zoukankan      html  css  js  c++  java
  • H5 新特性之全局属性 三

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>全局属性</title>
    <script>

    //
    window.document.designMode="on";
    </script>
    </head>
    <body>
    <form data-type="comment" class="container">
    <h3>留言板</h3>
    //hidden 隐藏 tabindex 焦点顺序 spellcheck="true"是否提醒拼写错误 contenteditable="true"是否可以编辑
    <label hidden>看见了吗</label>
    <p>
    <label >
    <span>姓名</span>
    <input tabindex="1">
    </label>
    </p>
    <p>
    <label >
    <span>邮件</span>
    <input tabindex="3">
    </label>
    </p>
    <p>
    <label >
    <span>留言</span>
    <textarea tabindex="2" spellcheck="true" cold="60" rows="5"></textarea>
    </label>
    </p>
    <table contenteditable="true">
    <tr>
    <td>数据1</td>
    <td>数据2</td>
    </tr>
    </table>
    <p contenteditable="true">请你留言</p>
    </form>
    </body>
    </html>
  • 相关阅读:
    【Coreforces 1253E】
    计数专题乱做
    PKUWC2020乱做
    多项式板子
    notepad
    2021.4.9
    2021.4.8
    2021.3.31
    2021.3.26
    2021.3.25
  • 原文地址:https://www.cnblogs.com/peijunma/p/6041195.html
Copyright © 2011-2022 走看看