1. 程式人生 > >form表單中get和post兩種提交方式的區別

form表單中get和post兩種提交方式的區別

name bsp inpu get div post input 普通 表單

一、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兩種提交方式的區別