jsp超链接传值到后台

来源:互联网 发布:淘宝保证金信用账户 编辑:程序博客网 时间:2024/06/03 09:17

Struts中多个超链接调用同样的action,只是返回结果不同的处理方法
jsp:

<a href="getColor.action?color="blue">blue</a><a href="getColor.action?color="red">red</a>

Action:

public String getColor(){  ...  ...  String hint = "this is color";  ActionContext.getContext().put("hint",hint);  if(color.equal("blue")){    return "blue color";  }else{    return "red color";  } }
0 0
原创粉丝点击