如何在Reactjs标签中使用jquery

时间:2018-12-04 16:40:24

标签: reactjs

render(){     返回(                           

LargeData

          

            为了代表浏览器中的大量数据,           

      <DataGrid

        height={this.state.height}
        style={{ fontSize: '12px' }}
        columns={this.state.columns}
        data={this.state.data}
        options={this.state.options}
      />

      <Divider />

      <Button
        type="primary"
        onClick={() => this.changeConfig('setHeight', 300)}
      >
        height : 300
      </Button>

      <Button
        type="primary"
        onClick={() => this.changeConfig('setHeight', 400)}
      >
        height : 400
      </Button>

      <Button
        type="primary"
        onClick={() => this.changeConfig('setHeight', 500)}
      >
        height : 500
      </Button>
    </Segment>
  </Wrapper>
);

我想在该DataGrid标记内使用J-Query属性。 jQuery属性为$('。child')。resizable({handles:'se'}); 而DataGrid标签是该项目中的电子表格。

0 个答案:

没有答案