html--a标签-文本框--单选框--下拉框--002

两盒软妹~` 提交于 2019-12-06 00:41:02

 

 

<body>
    <div><a href="/add_student/">添加学生</a></div>
    <p><input type="text" name="姓名" value="用户名"/></p>
    <p><input type="text" name="年龄" value="年龄"/></p>
    <p>
        男:<input type="radio" name="gender" value="1">
        女:<input type="radio" name="gender" value="0">
    </p>
    <select name="cs">
        <option value="1">www</option>
    </select>
</body>

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!