在JavaScript中,可以通過以下方式獲取contextPath:
<script>
var contextPath = '<%= request.getContextPath() %>';
console.log(contextPath);
</script>
var contextPath = window.location.pathname.substring(0, window.location.pathname.indexOf('/', 1));
console.log(contextPath);
在服務器端將contextPath設置為一個全局變量,然后在JavaScript中直接獲取該變量值:
console.log(contextPath);
這些方法都可以獲取到應用的contextPath,你可以根據自己的項目需求選擇合適的方法。