1.假设当前页完整地址是:http://localhost:61768/Home/Index?id=2 //获取当前窗口的Url var url = window.location.href; //结果:http://localhost:61768/Home/Index?id=2 //获取当前窗口的主机名 var host = window.location.host; //结果:localhost:61768 //获取当前窗口的端口 var port = window.location.por…
//Javascript获取站点获得根目录绝对路径 function getRootPath() { //完整路径 var strFullPath = window.document.location.href; //相对路径 var strPath = window.document.location.pathname; //完整路径-相对路径=Http://域名 var pos = strFullPath.indexOf(strPath); var prePath = strFullPath…