码迷,mamicode.com
首页 > 其他好文 > 详细

各种传值方式

时间:2016-09-14 16:36:46      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:

四种传值方式:form表单  隐藏域   URL   javabean

jsp页面像java后台传值方法:

  传一个值:方法名?参数名=值

  传多个值:方法名?参数名=值 & 参数名 = 值&.......    

  wind.location.href =/路径/方法名?参数 = 值 &.....

  后面也可是路径名.....  

  比如: wind.location.href =/路径/方法名?参数 = 值 & url="../../方法名?参数名=值;"

A页面像C页面传值

Struts: 固定传值 和 &(页面获取)

    java后台:getRequest().getParameter("type");

         getRequest().serAttribute("type",type);

    <result name="test" type="redirect">doIndex.do?status=1&amp;type=${type}</result>

 

  

各种传值方式

标签:

原文地址:http://www.cnblogs.com/jiaobaobao/p/5872461.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!