DEMO

a5de124ec660b9dfdfdf5485ccde7f0f.png

CODE

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
    </head>
    <body>
        <!--     
        name 表单的名字
        vaule 表单的值
        readonly 表示只读 内容不能修改 只针对数据框 数据可以被发送
         disabled 表示空间无效 不能用 数据不能被发送
         checked 表示选中状态  checkbox radio
         -->
        <form action="" method="post">
            
            <input type="" value="请输入用户名" readonly /><br>
            <input type="" value="请输入用户名" disabled /><br><!-- 灰色无效 -->
            <input type="checkbox" value="" checked /><br><!-- 表示默认被选中 -->
            <input type="radio" value="" checked /><br><!-- 表示默认被选中 -->
            
        </form>
        
        
    </body>
</html>
最后修改:2020 年 04 月 06 日
如果觉得我的文章对你有用,请随意赞赏