ReactBootstrap 提供了一个弹出框控件。我希望在单击弹出框外部时以与模式的工作方式类似的方式将其关闭(默认情况下单击开箱即用它会关闭)。
有没有办法使用 ReactBootstrap 来做到这一点,或者我需要自定义代码吗?
弹出窗口的 JSfiddle:http: //jsfiddle.net/226cwe4e/
React.createClass({
render: function() {
return <ReactBootstrap.OverlayTrigger trigger="click" placement="bottom" overlay={<ReactBootstrap.Popover title="Popover bottom"><strong>Holy guacamole!</strong> Check this info.</ReactBootstrap.Popover>}>
<ReactBootstrap.Button bsStyle="default">Holy guacamole!</ReactBootstrap.Button>
</ReactBootstrap.OverlayTrigger>;
}
});