溫馨提示×

js如何獲取contextPath

小億
268
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. 使用全局變量:

在服務(wù)器端將contextPath設(shè)置為一個(gè)全局變量,然后在JavaScript中直接獲取該變量值:

console.log(contextPath);

這些方法都可以獲取到應(yīng)用的contextPath,你可以根據(jù)自己的項(xiàng)目需求選擇合適的方法。

0