使用的是: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使用的是: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