jsp全局变量的设置

编写一个form表单提交action的时候,由于不能采用<%= %>与/path共用的方式,所以只能先将<%=request.getContextpath()%>等设置成一个全局变量,然后在action中进行直接使用。

设置方式如下:

<%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
            + path;
%>

form表单使用方式:


附录:

在js文件中获取请求的绝对路径的方式:

var localObj = window.location;
var contextPath = localObj.pathname.split("/")[1];
var basePath = localObj.protocol+"//"+localObj.host+"/"+contextPath;
---------------http:-------------//----主机IP-------/----项目上下文


你可能感兴趣的:(jsp全局变量的设置)