1、http响应和http请求通称为http协议:
2、抓包工具的安装
火狐浏览器4.0版本
httpwatch 9版本
3、抓包
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Insert title here</title> 6 </head> 7 <body> 8 <form action="#"method="get"> 9 <input type="text"name="username"><br/> 10 <input type="password"name="password"><br/> 11 <input type="submit"value="提交"><br/> 12 </form> 13 </body> 14 </html>
抓包结果:左下方为请求,右下方为响应。
原文:https://www.cnblogs.com/zhai1997/p/11273909.html