跳转到帖子
登录关注  
墨香年少

react获取网页宽度代码

已推荐帖子

import React, { Component } from 'react';
import PubSub from 'pubsub-js'
import './navigation.css'

const menuItems = []

class Navigation extends Component {

    constructor(props) {
        super(props);
        this.state = { width: 0, height: 0 };
        this.updateWindowDimensions = this.updateWindowDimensions.bind(this);
    }

    componentDidMount() {
        this.updateWindowDimensions();
        window.addEventListener('resize', this.updateWindowDimensions);
    }

    componentWillUnmount() {
        window.removeEventListener('resize', this.updateWindowDimensions);
    }

    updateWindowDimensions() {
        this.setState({ width: window.innerWidth, height: window.innerHeight });
        console.info("window.innerWidth="+window.innerWidth)
    }

    render() {
        return (
            <div id="header">
                <div className='wrapper'></div>
            </div>
        );
    }
}


export default Navigation;

22.png


目之所及,皆是回忆,心之所想,皆是过往

分享这篇帖子


链接帖子
分享到其他站点

创建帐户或登录来提出意见

你需要成为会员才能提出意见

创建帐户

注册成为会员。只要几个简单步骤!

注册帐户

登录

已有帐户? 请登录。

现在登录
登录关注  

×
×
  • 创建新的...

重要信息

注册必须使用2-8个中文汉字作为账号