這次帶給大家jquery引用React步奏詳解,jquery引用React的注意事項有哪些,下面就是實戰案例,一起來看一下。
在React中引用Jquery比較好玩,獲取元素的數據更多
引入方法舉例:
import $ from 'jquery'; import { Button } from 'antd'; class testJquery extends React.Component { constructor(props) { super(props); this.selectElement = this.selectElement.bind(this); } render() { return( <p> <Button onClick={this.selectElement}>点击一下</Button> <h4 className="text">这是:12</h4> </p> ); } selectElement() { console.log('text对象:',$('.text')); console.log('text中的值:',$('.text')[0].textContent); } } export default testJquery;
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#jquery使用iscorll實現手機端中上拉加載下拉刷新
以上是jquery引用React步奏詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!