js获取当前路径并截取
var str = window.location.href;// str = 'https://localhost:8080/mark'
var index = str .lastIndexOf(":"); str = str .substring(,index + );
console.log(str);//结果为:https://localhost:
2023-01-08 16:26:21
js获取当前路径并截取
var str = window.location.href;// str = 'https://localhost:8080/mark'
var index = str .lastIndexOf(":"); str = str .substring(,index + );
console.log(str);//结果为:https://localhost: