首页 > 网站 > WEB开发 > 正文

参数传递的四种形式----- URL,超链接,js,form表单

2024-04-27 14:06:36
字体:
来源:转载
供稿:网友

参数传递的四种形式----- URL,超链接,js,form表单

什么时候用GET, 查,删,

什么时候用POST,增,改 (特列:登陆用Post,因为不能让用户名和密码显示在URL上)

4种get传参方式

[html]view plaincopy
  1. <htmlxmlns="http://www.w3.org/1999/xhtml">
  2. <head>
  3. <metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
  4. <title></title>
  5. <scripttype="text/javascript">
  6. functionGo(){
  7. window.location.href="localhost:21811/Handler1.ashx?id=1&name='abc'"
  8. }
  9. </script>
  10. </head>
  11. <body>
  12. <!--//参数传递的几种形式-->
  13. <!--第一种:直接在URL后面加参数:-->
  14. localhost:21811/Handler1.ashx?id=1&name="abc"
  15. <!--第二种:用超链接的方法传递参数:当点击超链接的时候,首先会跳转到localhost:21811/Handler1.ashx页面,然后还会传递id和name两个参数过去-->
  16. <ahref="localhost:21811/Handler1.ashx?id=1&name='abc'">超链接传递参数</a></body>
  17. <!--第三种:通过js方法传递:用户点击这个button按钮,触发onClick事件,执行Go()方法,跳转到localhost:21811/Handler1.ashx页面,同时传递了id,和name两个参数过去-->
  18. <inputtype="button"onclick="Go()"value="通过js方法传递参数"/>
  19. <!--第四种:通过form表单传递-->
  20. <formaction="Handler1.ashx"method="get"><!--注意action里面的连接不能带参数的-->>
  21. <inputtype="text"name="id"value="3"/>
  22. <inputtype="text"name="name"value="abc"/>
  23. <inputtype="submit"value="通过传递参数"/>
  24. </form>
  25. </body>
  26. </html>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表