form表单中get和post两种提交方式的区别

Posted more harder, the more fortunat

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了form表单中get和post两种提交方式的区别相关的知识,希望对你有一定的参考价值。

一、form表单中get和post两种提交方式的区别?

  1.get提交表单中的内容在链接处是可见的。post不可见

  2.post相比于get是安全的

  3.post不收限制大小,get有限制大小(黑马视频中有提到)

二、复习checkbox

  优秀<input type="checkbox" name="check" value="优秀">
  合格<input type="checkbox" name="check" value="合格">
  普通<input type="checkbox" name="check" value="普通">

三、复习radio
  优秀<input type="radio" name="radio" value="优秀">
  合格<input type="radio" name="radio" value="合格">
  普通<input type="radio" name="radio" value="普通">

 

以上是关于form表单中get和post两种提交方式的区别的主要内容,如果未能解决你的问题,请参考以下文章

表单提交中get和post方式的区别

URL传值和form表单提交的区别和原理

在java中写jsp网页和servlet中,form表单的提交方法get与post的区别?

request.form()和request()的区别?

request.form()和request()的区别?

表单提交中get和post方式的区别