如何防止React Modal外部点击?

Pan*_*iou 0 javascript node.js reactjs

我目前正在使用react-modal包.

我想禁用点击并滚动外部反应模态组件.

小智 8

将此行添加到模态组件中

    <ReactModal 
       //other props declaration..
       shouldCloseOnOverlayClick={false} // add this to prevent outside click to prevent modal close 
    >
Run Code Online (Sandbox Code Playgroud)

event.preventDefault()用来修复它