React 事件處理函式

2022-07-10 09:36:12 字數 364 閱讀 5650

觸控事件:ontouchcancel\ontouchend\ontouchmove\ontouchstart

(只會在移動裝置上接受)

鍵盤事件:onkeydown\onkeypress\onkeyup

剪下事件:oncopy\oncut\onpaste

表單事件:onchange\oninput\onsubmit

焦點事件:onfocus\onblur

ui元素:onscroll(移動裝置是手指滾動和pc的滑鼠滑動)

滾動事件:onwheel(滑鼠滾輪)

滑鼠型別:onclick\oncontextmenu(右鍵)\ondoubleclick\onmousedown\onmouseenter\

react 事件處理

1.所有的事件以駝峰式命名如onclick 2.this作用域的問題,直接使用箭頭函式可以將該類的例項物件傳遞過去 若是呼叫的元件方法,需要使用this.handleclick this.handleclick.band this 這句話會建立乙個新的函式給handleclick,並把this當做引...

react事件處理

採用on 事件名的方式來繫結乙個事件,注意,這裡和原生的事件是有區別的,原生的事件全是小寫onclick,react裡的事件是駝峰onclick,react的事件並不是原生事件,而是合成事件。和普通瀏覽器一樣,事件handler會被自動傳入乙個event物件,這個物件和普通的瀏覽器event物件所包...

React元件中的事件處理函式

class reactevent extends component handleclick render click mebutton render中使用箭頭函式class reactevent extends component render click mebutton 使用class fie...