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.界面样式
3. 控制台打印结果
4.text对象部分属性
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 基于js中的原型(全面讲解)