📌  相关文章
📜  在反应中单击选择选项时打开模式 - Javascript代码示例

📅  最后修改于: 2022-03-11 15:04:14.606000             🧑  作者: Mango

代码示例1
import * as React from 'react';

export class Demo extends React.Component<{}, {}> {
  state = {
    options: [
      { text: 'doNothing', value: 'doNothing' },
      { text: 'openModal', value: 'openModal' }
    ],
    open: false
  };

  onClose = () => this.setState({open: false});
  onChange = (selected) => {
    // if the correct one is selected then...
    // this.setState({open: true});
  }

  render() {
    return (
      
Select a Photo

Some contents.

) } }