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