react 使用 标签注意事项


当我尝试使用a标签跳转页面

<a href="http://baidu.com" target="_blank" ></a>

 

提示报错:使用 target="_blank" 没有加 rel="noopener noreferrer" 是 有安全风险的,可查看以下链接进行详细查看

Using target="_blank" without rel="noopener noreferrer" is a security risk: see https://mathiasbynens.github.io/rel-noopener

 

 修改方法:

一、在a标签上加上 rel="noopener noreferrer"

<a href="http://baidu.com" target="_blank" rel="noopener noreferrer"></a>

  

二、使用div标签

<div onClick={() => {window.open('http://baidu.com')}}></div>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM