react-native点击事件
Posted boonook
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react-native点击事件相关的知识,希望对你有一定的参考价值。
点击事件
<View>
<Button title="点击事件" onPress={this._onPressButton.bind(this)}/>
</View>
_onPressButton() {
alert(‘点击事件亦被促发‘);
}
以上是关于react-native点击事件的主要内容,如果未能解决你的问题,请参考以下文章