zoukankan      html  css  js  c++  java
  • 密码框

    当type特性的值为password时<iinput>元素会创建一个用起来和单行文本框,唯一的不同之处在于其中的字符被掩盖了。

    <!DOCTYPE html>
    <!--
    To change this license header, choose License Headers in Project Properties.
    To change this template file, choose Tools | Templates
    and open the template in the editor.
    -->
    <html>
        <head>
            <title>TODO supply a title</title>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
        </head>
        <body>
            <div>TODO write content</div>
        <fomr action="http://www.example.com/login.php">
            <p>账号:
                <input type="text" name="username" size="15" maxlength="30"/>
            </p>
            <p>密码:
                <input type="password" name="password" size="15" maxlength="30" />
            </p>
        </fomr>
        </body>
    </html>
    
  • 相关阅读:
    hdoj 1872 稳定排序
    nyoj 60 谁获得了最高奖学金
    hdoj 2066 一个人的旅行
    nyoj 8 一种排序
    bzoj1798 1
    bzoj4031
    SPOJ-HIGH
    学习笔记::矩阵树定理
    学习笔记::树上莫队
    Strip
  • 原文地址:https://www.cnblogs.com/q2546/p/9372612.html
Copyright © 2011-2022 走看看