Home > Web Front-end > JS Tutorial > body text

How to get the root directory of web application in javascript_javascript skills

WBOY
Release: 2016-05-16 17:00:18
Original
1260 people have browsed it
Copy code The code is as follows:

<script> <br>function getRootPath(){ <br> var strFullPath=window.document.location.href; <br>var strPath=window.document.location.pathname; <br>var pos=strFullPath.indexOf(strPath); <br>var prePath=strFullPath.substring(0, pos); <br>var postPath=strPath.substring(0,strPath.substr(1).indexOf('/') 1); <br>return(prePath postPath); <br>} <br>var webpath= getRootPath(); //webpath is the directory path variable <br></script>
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template