Html-单选框

Posted DaLiangChen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Html-单选框相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="cn">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>单选框</title>
</head>

<body>

    <h1>表单进阶-单选框</h1>
    <div>你对于京东首页满意度如何</div>

    <div> <input type="radio" name="aa" checked> 非常满意</div>
    <div> <input type="radio" name="aa"> 满意</div>
    <div> <input type="radio" name="aa"> 一般</div>
    <div> <input type="radio" name="aa"> 不满意</div>

    <h1>你的性别</h1>
    <div>
        <input type="radio" name="bb" id="man" checked>
        <label for="man">男</label>

        <input type="radio" name="bb" id="woman">
        <label for="woman">女</label>
    </div>

</body>

</html>
运行最终效果!

 

以上是关于Html-单选框的主要内容,如果未能解决你的问题,请参考以下文章

HTML如何设置复选框单选框以及默认选项?

uniapp循环单选框实现单选

在隐藏的单选框/复选框上显示 HTML5 错误消息/验证

PyQt4单选框QCheckBox

Selenium2+python自动化19-单选框和复选框

Selenium2+python自动化19-单选框和复选框