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>;
}
});