7

如何在 javascript 中执行与 document.location.pathname 相同的功能 - 除了引荐来源网址?所以像document.referrer.pathname这样的东西?

谢谢。

4

3 回答 3

6

No, you can only extract needed part manually:

document.referrer.replace(/^[^:]+:\/\/[^/]+/, '').replace(/#.*/, '')
于 2011-06-29T20:29:51.980 回答
5

您可以从中提取路径名并使用以下代码document.referrer对其进行解析new URL()

const url = new URL(document.referrer)
url.pathname

确保为 IE 10 及更低版本填充 URL,使用https://polyfill.io/v3/polyfill.js?features=URL轻松完成

于 2019-03-26T22:11:08.943 回答
0

您可以使用document.referrer获取引用文档的 URL。你是这个意思吗??

于 2011-06-29T20:25:19.013 回答