react 在新的tab页面打开链接
作者:
ankicoo | 来源:发表于
2022-09-12 11:35 被阅读0次触发点击事件打开链接
class Cover extends Component{
openUrl = ()=>{
const w=window.open('about:blank');
w.location.href='https://ankicoo.gitee.io';
}
render(){
return(
<div className = "outer">
<!--> 新的Tab页 打开链接<-->
<Button onClick = {this.openUrl}/>
<a href="#" onClick = {this.openUrl} >博客</a>
<!--> 当前Tab页 打开链接<-->
<a href="https://ankicoo.gitee.io" >博客</a>
</div>
)
}
}
export default Cover;
本文标题:react 在新的tab页面打开链接
本文链接:https://www.haomeiwen.com/subject/hnthortx.html
网友评论