页面传数据

方式一:

 href="add.html?expId=123";

使用location.search.split分割获得

方式二:

  href="add.html?expId=123";

使用EL表达式

${param.expId}获得

方式三:

  href="add.html?expId=123";

使用小脚本

<%=request.expId%>

原文地址:https://www.cnblogs.com/ww103/p/12019578.html