码迷,mamicode.com
首页 > Web开发 > 详细

js例子记载

时间:2017-02-28 22:55:08      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:div   get   blocks   ref   window   color   bsp   jsp   json   

1.获取项目路径的,不一定有用,仅作参考用:

技术分享
1 function getRootPath() {
2     var curWwwPath = window.document.location.href;            //"http://localhost:8080/springMVC/jsonTest.jsp"
3     var pathName = window.document.location.pathname;        // /springMVC/jsonTest.jsp
4     var pos = curWwwPath.indexOf(pathName);                    // 21
5     var localhostPath = curWwwPath.substring(0, pos);        //http://localhost:8080
6     var projectName = pathName.substring(0, pathName.substr(1).indexOf(‘/‘) + 1);    //   /springMVC
7 
8     return (localhostPath + projectName);    //http://localhost:8080/springMVC
9 }
View Code

 

js例子记载

标签:div   get   blocks   ref   window   color   bsp   jsp   json   

原文地址:http://www.cnblogs.com/tenWood/p/6481070.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!