js 获取当前web应用的上下文路径实现方法 //js webcontext var webroot=[removed].href; webroot=webroot.substring(webroot.indexOf('//')+2,webroot.length); webroot=webroot.substring(webroot.indexOf('/')+1,webroot.length); webroot=webroot.substring(0,webroot.indexOf('/')); rootpath="/"+webroot; 以上这篇js 获取当