zoukankan      html  css  js  c++  java
  • BootStrap2学习日记10---单选框和复选框

        <label>选择你的性别</label>
        <label class="radio">
        <input type="radio" name="gender" value="male"></label>
        <label class="radio">
        <input type="radio" name="gender" value="female"></label>
        <label class="radio">
        <input type="radio" name="gender" value="other">人妖</label>

    上述代码的效果:

    复选框:

        <label>选择你的性别</label>
        <label class="checkbox">
        <input type="checkbox" name="gender" value="male"></label>
        <label class="checkbox">
        <input type="checkbox" name="gender" value="female"></label>
        <label class="checkbox">
        <input type="checkbox" name="gender" value="other">人妖</label>

    效果:

  • 相关阅读:
    正向代理与反向代理
    uniapp
    js
    js
    uniapp
    uniapp
    uniapp
    uniapp
    关于资源获取(请把https改为http)
    uniapp
  • 原文地址:https://www.cnblogs.com/keiling/p/3637415.html
Copyright © 2011-2022 走看看