javascript - Add and Remove HTML Elements on Button Click in React - Stack Overflow

admin2025-04-02  1

What's the best unplicated way to achieve this jQuery fiddle using just React without using jQuery or any other libraries? I don't quite have the ReactJS skills yet, and was wondering if there was a way to create and delete elements dynamically.

I was thinking of creating a

this.state = { "inputs": ["<input type="text" /><input type="checkbox" />"] }

state variable array that holds the HTML when added, giving each one a unique key based on the index and then .map() it, but am unsure whether there's an easier way to achieve this and am unsure on how to delete each element as such.

Would love any help or feedback, thanks!

What's the best unplicated way to achieve this jQuery fiddle using just React without using jQuery or any other libraries? I don't quite have the ReactJS skills yet, and was wondering if there was a way to create and delete elements dynamically.

I was thinking of creating a

this.state = { "inputs": ["<input type="text" /><input type="checkbox" />"] }

state variable array that holds the HTML when added, giving each one a unique key based on the index and then .map() it, but am unsure whether there's an easier way to achieve this and am unsure on how to delete each element as such.

Would love any help or feedback, thanks!

Share Improve this question asked Nov 19, 2016 at 9:04 BryanBryan 1,4684 gold badges15 silver badges24 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 15

Here is a "React" way to do this, I'm not a React expert, so the code could be better, would accept corrections.

  • Yes, react has more boilerplate codes, because you don't handle DOM directly and there is less "magic" which means you have more control overall. (specially as a controlled ponent)
  • States should be as minimum as possible, you just have to hold the pure data, other decorative stuff let ponents to handle them.
  • depends on the situation, you may want to separate the Row ponent into 2 separate ponents with more props.
  • ??? more suggestions?

UPDATE: after workin with React everyday for the last past 3 years, I found there are some bad practices on the previous code, I have update the code to be cleaner hopefully it helps you.

const Row = function(props){
  const {checked, value, onChange, onChecked} = props;
  return (
    <div>
      <input 
        type="checkbox" 
        checked={checked}
        onChange={onChecked}
        />
      <input type ="text" value={value}  onChange={onChange}/>
    </div>
  );
}

class App extends React.Component {
  constructor(props){
    super(props);
    this.state = {
      rows: [
        {value: 'row1', checked: false},
        {value: 'row2', checked: true},
        {value: 'row3', checked: false},
      ]
    };
  }
  
  updateValue = (e, idx) => {
    const rows = [...this.state.rows];  // copy array because we don't want to mutate the previous one
    rows[idx].value = e.target.value;
    this.setState({
        rows,
    });
  }
  
  onChecked = (idx) => {
    const rows = [...this.state.rows];  // copy array because we don't want to mutate the previous one
    rows[idx].checked = !rows[idx].checked;
    this.setState({
        rows,
    });
  } 
  
  addRow = () => {
    const rows = [...this.state.rows, 
                  {value:'', checked: false}
                 ];
    this.setState({
        rows,
    });
  }
  
  deleteRows = () => {
    this.setState({
      rows: this.state.rows.filter(e => !e.checked)
    });
  }
 
  render(){
    return(
      <div>
        {this.state.rows.map((row, idx) => {
          return(
              <Row 
                key={idx} 
                value={row.value}
                checked={row.checked}
                onChange={(e) => this.updateValue(e, idx)} 
                onChecked={() => this.onChecked(idx)}
                /> 
            )
        })
        }
        <button onClick={this.addRow}>
          add 
        </button>
        <button onClick={this.deleteRows}>
          delete
        </button>
      </div>
    );
  }
}

ReactDOM.render(
  <App />,
  document.getElementById('app')
);
<script src="https://cdnjs.cloudflare./ajax/libs/react/16.8.6/umd/react.development.js"></script>
<script src="https://cdnjs.cloudflare./ajax/libs/react-dom/16.8.6/umd/react-dom.development.js"></script>

<div id="app"> </div>

Just use the old plain JS way

 var elem = document.getElementById("button_" + id);
 elem.parentNode.removeChild(elem);

In my opinion, keep the element you want to create in a variable . every time you want to create a element push() it into a array and then map it through the array to render it, if you want to remove you can use pop() to remove the last item in the array.

Note: you have to use dangerouslySetInnerHTML to render the element when it is a string.

Happy Coding !

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743552014a213048.html

最新回复(0)