图片加载,创建事件监听

     <img
          src={`https://zos.alipayobjects.com/rmsportal/${val}.png`}
          alt=""
          style={{ width: '100%', verticalAlign: 'top' }}
          onLoad={() => {
          // fire window resize event to change height
           window.dispatchEvent(new Event('resize'));
           this.setState({ imgHeight: 'auto' });
      }}
     />        

  

猜你喜欢

转载自www.cnblogs.com/winyh/p/10368809.html