欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

React中jquery引用的实现方法

程序员文章站 2024-01-17 14:59:34
在react中引用jquery比较好玩,获取元素的数据更多 1.引入方法举例: import $ from 'jquery'; import { bu...

在react中引用jquery比较好玩,获取元素的数据更多

1.引入方法举例:

import $ from 'jquery';

import { button } from 'antd';

class testjquery extends react.component {

  constructor(props) {
    super(props);

    this.selectelement = this.selectelement.bind(this);

  }

  render() {

    return(

      <div>

        <button onclick={this.selectelement}>点击一下</button>

        <h4 classname="text">这是:12</h4>

      </div>

    );

  }

  selectelement() {

    console.log('text对象:',$('.text'));

    console.log('text中的值:',$('.text')[0].textcontent);

  }

}

export default testjquery;

2.界面样式

React中jquery引用的实现方法

3. 控制台打印结果

React中jquery引用的实现方法

 4.text对象部分属性

React中jquery引用的实现方法

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。