class APP extends React.Component { constructor(props) { super(props); this.player = null } componentDidMount(){ var asse = '1', window.player = this.player; } fullScreent=()=>{ this.player.fullScreent(); } render(){ return ( <div> <button onClick={()=> this.fullScreent()}>开始</button> <div> ) } } export default APP;
时间: 2024-04-19 07:25:46 浏览: 119
前端框架 使用React 开发一个井字棋(2)React.Component组件介绍
这是一个基于React的APP组件,它包含一个按钮和一个div元素。在构造函数中,我们初始化了一个名为player的变量,它被设置为null。组件挂载后,我们将this.player赋值给全局变量window.player。fullScreent方法用于全屏播放。当点击按钮时,会调用fullScreent方法。
阅读全文