标签:jsp html request url
方法一
在html或者JS代码里通过隐含变量param获取:
${param.name}
通过Request对象获取:
<%String name = request.getParameter("name");%>
版权声明:本文为博主原创文章,未经博主允许不得转载。
jsp获取Request请求参数
原文地址:http://blog.csdn.net/laixunxun/article/details/47039723