react怎么取消右键
时间:2023-01-03 14:42
react取消右键的方法:1、打开相应的react文件;2、通过添加代码“componentDidMount(){document.oncontextmenu = function (e) {e = e || window.event;return false;};}”来实现屏蔽浏览器默认右键事件即可。 本教程操作环境:Windows10系统、react18.0.0版、Dell G3电脑。 react怎么取消右键? react页面中屏蔽浏览器默认右键事件 相关拓展: React componentDidMount() 方法 React 组件生命周期 React 组件生命周期 componentDidMount() 方法格式如下: componentDidMount() 方法在组件挂载后(插入 DOM 树中)立即调用。 依赖于 DOM 节点的初始化应该放在 componentDidMount() 方法中。 以下实例会先输出 runoob,然后使用 componentDidMount() 方法设置在组件挂载后输出 google: 实例 推荐学习:《react视频教程》 以上就是react怎么取消右键的详细内容,更多请关注gxlsystem.com其它相关文章!componentDidMount() {
document.oncontextmenu = function (e) {/*屏蔽浏览器默认右键事件*/
e = e || window.event;
return false;
};
}
componentDidMount()
class Header extends React.Component {
constructor(props) {
super(props);
this.state = {favoritesite: "runoob"};
}
componentDidMount() {
setTimeout(() => {
this.setState({favoritesite: "google"})
}, 1000)
}
render() {
return (
<h1>我喜欢的网站是 {this.state.favoritesite}</h1>
);
}
}
ReactDOM.render(<Header />, document.getElementById('root'));