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="checkbox" name="input1" id="box1">
        <label for="box1">抽烟</label>
        <input type="checkbox" name="input1" id="box2">
        <label for="box2">喝酒</label>
        <input type="checkbox" name="input1" id="box3">
        <label for="box3">烫头发</label>
        <input type="checkbox" name="input1" id="box4">
        <label for="box4">打架</label>
    </div>

</body>

</html>
运行最终效果!

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

html如何做下拉的可多选的复选框列表

html 输入类型复选框e radio.html

HTML 按大陆划分的国家/地区复选框 - HTML表单

html如何做下拉的可多选的复选框列表

在 HTML5 中选中和取消选中复选框的正确方法是啥?

HTML复选框和输入选项[关闭]