如何在ReactJS中呈现Popover模态

时间:2017-08-16 05:59:52

标签: reactjs react-native popover

有人可以帮我在ReactJS UI中创建popover,如下图所示。

enter image description here

1 个答案:

答案 0 :(得分:0)

使用流行的ui组件框架之一,您可以轻松完成此操作。例如bootstrap / jquery。

按照以下步骤操作即可:

  1. 在父组件的render方法中,根据guidelines for the component准备html布局:
  2. <a href="#" id="mypopover" data-toggle="popover" title="Popover Header" data-content="Some content inside the popover">Toggle popover</a>

    1. 在父组件的componentDidMount方法中:
    2. $("#mypopover").popover();

      1. 最后在componentWillUnmount
      2. $("#mypopover").popover('destroy')