How can I detect rel=“noreferrer” support?

我是研究僧i 提交于 2019-12-04 19:24:51

问题


Is there any way I can detect the support for rel="noreferrer" with Javascript?

<a href="http://example.com" rel="noreferrer">link without referral</a>

Solution - $.browser is deprecated, and it may be moved to a plugin in a future release of jQuery.

var is_webkit = $.browser.webkit;
if(is_webkit) {
    alert('supports rel="noreferrer"');
}

回答1:


No, there is none. Referrer headers are outside the domain of JavaScript.

If it's particularly important, you could check whether the browser (navigator.userAgent) is one known to support or not support noreferrer.




回答2:


I detect noreferrer support by creating a hidden iframe with a name attribute, and then I create an <a rel="noreferrer"> link with its target attribute equal to the iframe's name attribute, and have the link point to any resource on the current domain. Linking to about:blank also works, but it has problems in Firefox and IE, so you should instead link to an intentionally blank file on your server. After the resource is loaded in the iframe, check that [the iframe].contentDocument.referrer === "". If this is true, noreferrer is supported.

An example of my implementation is available in hotlink.js. Specifically, see on_ready.



来源:https://stackoverflow.com/questions/8370341/how-can-i-detect-rel-noreferrer-support

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!