本篇內(nèi)容介紹了“react如何取消右鍵”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
創(chuàng)新互聯(lián)專注于企業(yè)全網(wǎng)營(yíng)銷推廣、網(wǎng)站重做改版、交口網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5頁(yè)面制作、成都做商城網(wǎng)站、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為交口等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。
react取消右鍵的方法:1、打開(kāi)相應(yīng)的react文件;2、通過(guò)添加代碼“componentDidMount(){document.oncontextmenu = function (e) {e = e || window.event;return false;};}”來(lái)實(shí)現(xiàn)屏蔽瀏覽器默認(rèn)右鍵事件即可。
react頁(yè)面中屏蔽瀏覽器默認(rèn)右鍵事件
componentDidMount() {
document.oncontextmenu = function (e) {/*屏蔽瀏覽器默認(rèn)右鍵事件*/
e = e || window.event;
return false;
};
}
相關(guān)拓展:
React componentDidMount() 方法
React 組件生命周期 React 組件生命周期
componentDidMount() 方法格式如下:
componentDidMount()
componentDidMount() 方法在組件掛載后(插入 DOM 樹(shù)中)立即調(diào)用。
依賴于 DOM 節(jié)點(diǎn)的初始化應(yīng)該放在 componentDidMount() 方法中。
以下實(shí)例會(huì)先輸出 runoob,然后使用 componentDidMount() 方法設(shè)置在組件掛載后輸出 google:
實(shí)例
class Header extends React.Component {
constructor(props) {
super(props);
this.state = {favoritesite: "runoob"};
}
componentDidMount() {
setTimeout(() => {
this.setState({favoritesite: "google"})
}, 1000)
}
render() {
return (
我喜歡的網(wǎng)站是 {this.state.favoritesite}
);
}
}
ReactDOM.render(
“react如何取消右鍵”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!