abstrakt:<form action="" method="get"> </form> 或 <form action="" method="post"> </form> Method的值為get時(shí),是通過URL傳內(nèi)容與參數(shù),這個(gè)時(shí)候我們通過網(wǎng)址URL能看見自己填寫內(nèi)容提交處理 Method的值為post時(shí),是通過類似緩存?zhèn)魈顚憙?nèi)容與參數(shù),而URL是不能看到form表單填寫內(nèi)容提交內(nèi)容。 對(duì)于html 表單form標(biāo)簽,有了form表單及提交方式(get post)(了解 get post區(qū)別),才能將數(shù)據(jù)進(jìn)行傳輸給程序處理,否則程序不能接收到將要處理的數(shù)據(jù)。