什么時(shí)候用GET, 查,刪
什么時(shí)候用POST,增,改 (特列:登陸用Post,因?yàn)椴荒茏層脩裘兔艽a顯示在URL上)
4種get傳參方式
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <script type="text/javascript"> function Go() { window.location.href="localhost:21811/Handler1.ashx?id=1&name='abc'" } </script> </head> <body> <!--//參數(shù)傳遞的幾種形式--> <!--第一種:直接在URL后面加參數(shù):--> localhost:21811/Handler1.ashx?id=1&name="abc" <!--第二種:用超鏈接的方法傳遞參數(shù):當(dāng)點(diǎn)擊超鏈接的時(shí)候,首先會(huì)跳轉(zhuǎn)到localhost:21811/Handler1.ashx頁(yè)面,然后還會(huì)傳遞id 和name 兩個(gè)參數(shù)過(guò)去--> <a href="localhost:21811/Handler1.ashx?id=1&name='abc'">超鏈接傳遞參數(shù)</a></body> <!--第三種:通過(guò)js方法傳遞:用戶點(diǎn)擊這個(gè)button按鈕,觸發(fā)onClick事件,執(zhí)行Go()方法,跳轉(zhuǎn)到localhost:21811/Handler1.ashx頁(yè)面,同時(shí)傳遞了id,和name兩個(gè)參數(shù)過(guò)去--> <input type="button" onclick="Go()" value="通過(guò)js方法傳遞參數(shù)" /> <!--第四種:通過(guò)form表單傳遞--> <form action="Handler1.ashx" method="get"><!--注意action里面的連接不能帶參數(shù)的-->> <input type="text" name="id" value="3" /> <input type="text" name="name" value="abc" /> <input type="submit" value="通過(guò)傳遞參數(shù)" /> </form> </body> </html>通過(guò)以上具體的實(shí)現(xiàn)代碼,希望對(duì)大家理解這四種參數(shù)傳遞有所幫助。
新聞熱點(diǎn)
疑難解答
圖片精選
網(wǎng)友關(guān)注