"referrerpolicy" 是 <a> 的有效属性吗?
is "referrerpolicy" a valid attribute of <a>?
好的,因为我在 W3Schools 上看到它在 <a>
元素的 "Attributes" table 上征用了 referrerpolicy 属性。所以我想知道这是否可行以及它是如何工作的。
正如 W3C 所说:
The Referrer-Policy HTTP header governs which referrer information,
sent in the Referer header, should be included with requests made.
这意味着您可以配置目标网站是否可以访问 referrer
信息。
例如:使用<a href="http://example.com" referrerpolicy="origin">
只允许目标访问origin
信息。
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
好的,因为我在 W3Schools 上看到它在 <a>
元素的 "Attributes" table 上征用了 referrerpolicy 属性。所以我想知道这是否可行以及它是如何工作的。
正如 W3C 所说:
The Referrer-Policy HTTP header governs which referrer information, sent in the Referer header, should be included with requests made.
这意味着您可以配置目标网站是否可以访问 referrer
信息。
例如:使用<a href="http://example.com" referrerpolicy="origin">
只允许目标访问origin
信息。
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy