zoukankan      html  css  js  c++  java
  • 标签表单控件

    在使用表单控件时,可以直接通过表单控件旁边的文字说明它的作用并以保持代码的简洁,但是,每个表单控件最好使用相应的<label>元素来代替简单的文

    <!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>
            <label>文件上传域:<input type="text" name="age" /></label>
            <br />
              选择框:
            <input id="female" type="radio" name="gender" value="f">
            <label for="female">单选按钮</label>
            <input id="male" type="radio" name="gender" value="m">
            <label for="male">单选按钮</label>
        </body>
    </html>
    

  • 相关阅读:
    vnode之update 还是没太懂
    vnodec创建之标签
    1054 求平均值
    1053 住房空置率
    1052 卖个萌
    1051 复数乘法
    1050 螺旋矩阵
    1049 数列的片段和
    1048 数字加密
    1047 编程团体赛
  • 原文地址:https://www.cnblogs.com/q2546/p/9377926.html
Copyright © 2011-2022 走看看