ericbai
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <div>
        <!-- 下拉列表 -->
        <select name="" id="">
            <option value="1">male</option>
            <option value="2" selected>female</option>
            <option value="3">middle</option>
        </select>
    </div>
    <div>
        <!-- 单选框 -->
        <input name="sex" type="radio" checked>
        <input name="sex" type="radio">
        <input name="sex" type="radio">
    </div>
    <div>
        <!-- 多选框 -->
        <input name="hobby" type="checkbox" checked>
        <input name="hobby" type="checkbox">
        <input name="hobby" type="checkbox">
    </div>
    <script src="jquery-1.12.4.js"></script>
</body>
</html>

  

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-14
  • 2021-11-24
  • 2021-08-11
  • 2021-05-08
  • 2021-11-17
猜你喜欢
  • 2022-12-23
  • 2021-11-24
  • 2021-12-12
  • 2021-09-20
  • 2021-09-03
相关资源
相似解决方案