如何在 javascript 中执行与 document.location.pathname 相同的功能 - 除了引荐来源网址?所以像document.referrer.pathname这样的东西?
谢谢。
如何在 javascript 中执行与 document.location.pathname 相同的功能 - 除了引荐来源网址?所以像document.referrer.pathname这样的东西?
谢谢。
No, you can only extract needed part manually:
document.referrer.replace(/^[^:]+:\/\/[^/]+/, '').replace(/#.*/, '')
您可以从中提取路径名并使用以下代码document.referrer
对其进行解析new URL()
const url = new URL(document.referrer)
url.pathname
确保为 IE 10 及更低版本填充 URL,使用https://polyfill.io/v3/polyfill.js?features=URL轻松完成
您可以使用document.referrer
获取引用文档的 URL。你是这个意思吗??