我正在尝试在这样的网页中包含 Vimeo Iframe(JSX 代码):
<iframe frameBorder="0" width="100%" height="100%" src={this.props.src} webkitAllowFullScreen mozAllowFullScreen allowFullScreen />
渲染的是这样的:
<iframe frameborder="0" width="100%" height="100%" src="https://player.vimeo.com/video/..." allowfullscreen=""></iframe>
如何实现所需的 mozAllowFullScreen 和 webkitAllowFullScreen 属性?在 React Docs ( https://facebook.github.io/react/docs/dom-elements.html#all-supported-html-attributes ) 中只提到了 allowfullscreen 属性?