問題描述,打開ACfan連接的時候,若是<a href = 'acfan連接'>會出現403錯誤,javascript
若是<a href = 'acfan連接' rel=noreferrer>帶上rel=noreferrer屬性就能夠正常訪問。html
如今要求用window.open打開,或者用location.href打開連接:java
借鑑:瀏覽器
方法1:使用window.open新開頁面,並插入一段javascript,用來重定向到目標頁面:url
var url = "http://www.baidu.com/" window.open('javascript:window.name;', '<script>location.replace("'+url+'")<\/script>');
方法2:經過指定data:text/html來強制瀏覽器打開一個指定空頁面:htm
var url = "http://www.baidu.com/" window.open('data:text/html,<html><body><script>location.replace("' + url + '")</script></body></html>');