当前位置 : 主页 > 编程语言 > java >

jsp中的js中获取项目路径的方法

来源:互联网 收集:自由互联 发布时间:2021-06-25
在jsp中加上 % String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; % script $(function(){ var rootPath = "% = bathPath%" ; alert(rootPath); } /

在jsp中加上

<%

String path = request.getContextPath();

String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

%>

 

<script>

  $(function(){

       var rootPath = "<%=bathPath%>";

               alert(rootPath );

  }

            

</script>

网友评论