博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[React] Normalize Events with Reacts Synthetic Event System
阅读量:6340 次
发布时间:2019-06-22

本文共 550 字,大约阅读时间需要 1 分钟。

Event handlers are passed an instance of SyntheticEvent in React. In this video we'll take a look at the wide range of events available to us, including Touch events.

 

class App extends React.Component {
constructor(){ super(); this.state = {currentEvent: '---'} this.update = this.update.bind(this) } update(e){
this.setState({currentEvent: e.type}) } render(){
return (

{
this.state.currentEvent}

) }}ReactDOM.render(
, document.getElementById('root'));

 

转载地址:http://gohoa.baihongyu.com/

你可能感兴趣的文章
关于机票预订系统的帮助文档
查看>>
Tomcat工作原理
查看>>
真实的“牵牛的夏天”
查看>>
mysql 标准
查看>>
mysql主从集群配置
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
MegaCli的相关shell脚本
查看>>
Ubuntu下配置Tomcat
查看>>
java 发送带cookie的http请求
查看>>
我的友情链接
查看>>
2、【华为HCIE-Storage】--DAS NAS SAN
查看>>
一个线程池例子
查看>>
configure: error: Cannot find OpenSSL's libraries
查看>>
2.5-搭建本地yum仓库
查看>>
OSPF基础知识
查看>>
zookeeper安装部署
查看>>
RHEL6 preinstall for oracle
查看>>
Corrupt Block
查看>>
centos6——初始化脚本
查看>>