我的代码:
<embed style={{ width: '600px', height: '380px' }}
wmode="transparent"
allowFullScreen='true'
src={this.state.play ? vSrc : ''}
type="application/x-shockwave-flash"/>
React代码使用<embed>
标记来播放视频。视频可以播放,但无法全屏显示
我该如何解决这个问题呢?
ps:我试过,发现bug是属性allowfullscreen
novalue。当React呈现DOM时,allowfullscreen
的值将被忽略。我无法在render()DOM中设置它。