contextPath js

js如何获取contextPath

小亿
272
2023-08-04 11:26:10
栏目: 编程语言

在JavaScript中,可以通过以下方式获取contextPath:

  1. 在JSP页面中将contextPath传递给JavaScript变量:
<script>
var contextPath = '<%= request.getContextPath() %>';
console.log(contextPath);
</script>
  1. 使用location对象获取contextPath:
var contextPath = window.location.pathname.substring(0, window.location.pathname.indexOf('/', 1));
console.log(contextPath);
  1. 使用全局变量:

在服务器端将contextPath设置为一个全局变量,然后在JavaScript中直接获取该变量值:

console.log(contextPath);

这些方法都可以获取到应用的contextPath,你可以根据自己的项目需求选择合适的方法。

0
看了该问题的人还看了