1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
| import React from "react";
export default class App extends React.Component { state = { inputValue: "", lists: [ { id: 0, name: "a", isChecked: false, }, { id: 1, name: "b", isChecked: false, }, { id: 2, name: "c", isChecked: false, }, ], }; add() { let newList = this.state.lists; newList.push({ id: Math.random() * 100000, name: this.state.inputValue, isChecked: false, }); this.setState({ lists: newList, inputValue: "", }); } delete = (index) => { let newList = this.state.lists; newList.splice(index, 1); this.setState({ lists: newList, }); }; handchange = (index) => { console.log(index); let newList = [...this.state.lists]; newList[index].isChecked = !newList[index].isChecked; this.setState({ lists: newList, }); }; render() { return ( <div> <input value={this.state.inputValue} onChange={(e) => { this.setState({ inputValue: e.target.value, }); }} ></input> <button onClick={() => { this.add(); }} > Add </button> <ul> {this.state.lists.map((item, index) => ( <li key={item.id}> <input type='checkbox' checked={item.isChecked} onChange={() => { this.handchange(index); }} ></input> <span style={{ textDecoration: item.isChecked ? "line-through" : "" }} > {item.name} </span> <button onClick={() => { this.delete(index); }} > delete </button> </li> ))} </ul> {this.state.lists.length == 0 && <div>暂无待办事项</div>} </div> ); } }
|