本篇内容介绍了“react如何取消右键”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
react取消右键的方法:1、打开相应的react文件;2、通过添加代码“componentDidMount(){document.oncontextmenu = function (e) {e = e || window.event;return false;};}”来实现屏蔽浏览器默认右键事件即可。
react页面中屏蔽浏览器默认右键事件
componentDidMount() { document.oncontextmenu = function (e) { e = e || window.event; return false; };}
相关拓展:
React componentDidMount() 方法
React 组件生命周期 React 组件生命周期
componentDidMount() 方法格式如下:
componentDidMount()
componentDidMount() 方法在组件挂载后(插入 DOM 树中)立即调用。
依赖于 DOM 节点的初始化应该放在 componentDidMount() 方法中。
以下实例会先输出 runoob,然后使用 componentDidMount() 方法设置在组件挂载后输出 google:
实例
class Header extends React.Component { constructor(props) { super(props); this.state = {favoritesite: "runoob"}; } componentDidMount() { setTimeout(() => { this.setState({favoritesite: "google"}) }, 1000) } render() { return ( <h2>我喜欢的网站是 {this.state.favoritesite}</h2> ); }} ReactDOM.render(<Header />, document.getElementById('root'));
“react如何取消右键”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!