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

时间:2023-03-09 09:49:28
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="普通">