componentDidMount中 document.getElementById('id')为null
问题描述
componentDidMount中,document.getElementById('id')为null
问题出现的环境背景及自己尝试过哪些方法
我尝试使用ref,发现this.refs中为undefined.
相关代码
componentDidMount() {
const fullscreenBtn = document.getElementById('button');
if (fullscreenBtn) {
fullscreenBtn.addEventListener('click', () => {
if (fullscreenBtn.requestFullscreen) {
fullscreenBtn.requestFullscreen();
} else if ( document.getElementById('video').msRequestFullscreen) {
fullscreenBtn.msRequestFullscreen();
} else if ( document.getElementById('video').mozRequestFullScreen) {
fullscreenBtn.mozRequestFullScreen();
} else if ( document.getElementById('video').webkitRequestFullscreen) {
document.getElementById('video').webkitRequestFullscreen();
}
});
}
}
<div
className = "play_img"
id='button'
ref='button'
ref={(ref) => this.button = ref}
onClick={handleClick}>
<img src={require('./assets/play.png')} />
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不要在
react
中操作dom
节点。不要在react
中操作dom
节点。不要在react
中操作dom
节点。你记住这句话,就没有你说的问题了。
onClick事件写在属性上,找元素用
e.target
想在componentDidMount通过refs操作真实dom,只需要把获取refs的代码写在setTimeout中,比如: