首页 > 代码库 > SSH相关小应用

SSH相关小应用

1.隐藏值:<s:hidden name="bbsTopic.id" value="http://www.mamicode.com/%{bbsTopic.id}"></s:hidden>

  a.<s:hidden/>用于隐藏;

  b.%{obj.id}只是struts2的应用,在其他框架中无法应用,这个功能类似于EL的${}功能。

2.取项目的相对路径(使用pageContext):

function viewBbsTopic(id)
 {
  window.location = "${pageContext.request.contextPath}/bbs/bbs_viewBbsTopic.do?bbsTopic.id="+id;
 }