jsp中获取文件的绝对路径前缀

代码:

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ page isELIgnored="false" %>
<%@ page trimDirectiveWhitespaces="true" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="s" uri="http://www.springframework.org/tags" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
//pageContext.setAttribute("basePath",basePath);
%>

....

js中引用:

        $(function() {
            $(".add").click(function() {
        	alert("${basePath}"+"-----------------------------------");
            $(this).toggleClass("gray");
            });
        });
网页展示结果:

jsp中获取文件的绝对路径前缀_第1张图片





你可能感兴趣的:(前端)