摘要:表单的确认按钮,和重置按钮: <form> <!-- 提交按钮,可以用button,也可以用input类型submit --> <!-- <button>确认</button> --> <input type="submit"> <input type="submit" value="批准"> <!
阅读全文
摘要:<form action="#"> <!-- 隐藏域: 用户不可见的一个输入区域,提交表单时携带一些额外的附加验证数据 --> <input type="hidden" name="tag" value="123"><br> 姓名:<input type="text" value="hello" m
阅读全文
摘要:向百度发起一个搜索的请求并获得请求结果: <!-- 表单是网页中的一个交互区域,用于收集数据 --> <!-- action 把表单交给哪个网页去搜索 --> <form action="https://www.baidu.com/s"> <input type="text" name="wd">
阅读全文
摘要:table{ text-align: center; border-collapse: collapse; /*合并相邻边框 */ }
阅读全文