js 获取当前URL地址

xiaoxiao2021-02-27  489

//获取当前URL地址 function GetUriPath() { var strFullPath = window.document.location.href; var strPath = window.document.location.pathname; var pos = strFullPath.indexOf(strPath); var prePath = strFullPath.substring(0, pos); var postPath = strPath.substring(0, strPath.substr(1).indexOf('/') + 1); return (prePath + postPath + '/');//框架中使用这个 //return (prePath + '/'); }
转载请注明原文地址: https://www.6miu.com/read-2740.html

最新回复(0)