代码:
<%@ 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);
%>
<html lang="en">
<head>....
js中引用:
$(function() {
$(".add").click(function() {
alert("${basePath}"+"-----------------------------------");
$(this).toggleClass("gray");
});
});
网页展示结果: