市委组织部项目--js调用后台方法(二)
时间:2014-03-10 20:14:57
收藏:0
阅读:428
html中获取工程路径:
<% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %>
javaScript中获取工程路径
var localObj = window.location;
var contextPath = localObj.pathname.split("/")[1];
var basePath = localObj.protocol+"//"+localObj.host+"/"+contextPath;java中获取工程路径
String path = ServletActionContext.getRequest().getRealPath(relativePath);
市委组织部项目--js调用后台方法(二),布布扣,bubuko.com
原文:http://blog.csdn.net/hejingyuan6/article/details/20572339
评论(0)