上一页 1 ··· 85 86 87 88 89 90 91 92 93 ··· 99 下一页
摘要: <input type="reset"> 重置按钮 可以把输入框的改动复原 示例 1 : 重置按钮 <form action="/study/login.jsp"> 账号:<input type="text" name="name"> <br/> 密码:<input type="password" 阅读全文
posted @ 2020-06-24 10:11 Jasper2003 阅读(1011) 评论(0) 推荐(0) 编辑
摘要: <input type="submit"> 即为提交按钮用于提交form,把数据提交到服务端 示例 1 : 提交按钮 <form action="/study/login.jsp" method="get"> 账号:<input type="text" name="name"> <br/> 密码:< 阅读全文
posted @ 2020-06-24 10:07 Jasper2003 阅读(811) 评论(0) 推荐(0) 编辑
摘要: <input type="button"> 即普通按钮 示例 1 : 普通按钮 <input type="button" value="一个按钮"> 示例 2 : 普通按钮不具备提交form的效果 普通按钮不能提交 <form action="/study/login.jsp" method="ge 阅读全文
posted @ 2020-06-24 09:43 Jasper2003 阅读(545) 评论(0) 推荐(0) 编辑
摘要: <textarea> 即文本域与文本框不同的是,文本域可以有多行,并且可以有滚动条 示例 1 : 文本域 <textarea>abc def </textarea> 示例 2 : 设置宽度和行数 使用属性cols和rows <textarea cols="30" rows="8">123456789 阅读全文
posted @ 2020-06-24 09:32 Jasper2003 阅读(560) 评论(0) 推荐(0) 编辑
摘要: <select> 即下拉列表需要配合<option>使用 示例 1 : 下拉列表 <select > <option >苍老师</option> <option >高树玛利亚</option> <option >遥美</option> </select> 示例 2 : 设置高度 使用属性size < 阅读全文
posted @ 2020-06-24 09:22 Jasper2003 阅读(640) 评论(0) 推荐(0) 编辑
摘要: <input type="checkbox"> 即表示复选框 示例 1 : 复选框 <p>今天晚上做什么?</p> 学习java<input type="checkbox" value="学习java" > <br/> 东京热<input type="checkbox" checked="check 阅读全文
posted @ 2020-06-24 09:03 Jasper2003 阅读(489) 评论(0) 推荐(0) 编辑
摘要: <input type="radio" > 表示单选框 示例 1 : 单选框 两个单选,都可以同时选中。 为了达到,同一时间,只能选中其一的效果,需要使用分组 单选1 <input type="radio" > 单选2 <input type="radio" > 示例 2 : 默认选中 默认选中 < 阅读全文
posted @ 2020-06-24 09:00 Jasper2003 阅读(2596) 评论(0) 推荐(0) 编辑
摘要: <form>用于向服务器提交数据,比如账号密码 示例 1 : 表单 <form action="https://how2j.cn/study/login.jsp"> 账号:<input type="text" name="name"> <br/> 密码:<input type="password" 阅读全文
posted @ 2020-06-24 08:53 Jasper2003 阅读(137) 评论(0) 推荐(0) 编辑
摘要: <input type="password"> 即表示密码框 示例 1 : 密码框 输入的数据会自动显示为星号 <input type="password"> 阅读全文
posted @ 2020-06-24 08:39 Jasper2003 阅读(576) 评论(0) 推荐(0) 编辑
摘要: 0. What happened? Leaked Viet war papers to press. Press published them. Some could’ve been confidential. Threat to national security Who won? New Yor 阅读全文
posted @ 2020-06-23 06:55 Jasper2003 阅读(146) 评论(0) 推荐(0) 编辑
上一页 1 ··· 85 86 87 88 89 90 91 92 93 ··· 99 下一页