React鼠标右单击事件

前端之家收集整理的这篇文章主要介绍了React鼠标右单击事件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用的是:onContextMenu

例:

<span 
onClick={this.onClick.bind(this)}  
onContextMenu={this.onContextMenu.bind(this)}>
   右单击事件
 </span>

函数中:

onContextMenu(e){
    e.preventDefault()
    alert("右单击")
  }

So,that's ok.

原文链接:https://www.f2er.com/react/303222.html

猜你在找的React相关文章