发布网友 发布时间:2022-04-25 00:59
共4个回答
热心网友 时间:2023-10-18 17:03
很简单,当前页面的地址是吧?
给吧:
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);
var path = prePath + postPath;
这么多path就是的!!!
热心网友 时间:2023-10-18 17:03
就是location.pathname
var strPath = window.document.location.pathname
热心网友 时间:2023-10-18 17:04
js获取当前页面的地址 location.pathname
热心网友 时间:2023-10-18 17:04
var linkkey=document.location.pathname;