提醒:由於看到這系列鐵人訂閱人數漸漸變多,標記一下這些內容是在「非常萌新時期」所寫,更多技術內容請參考我的 Github,歡迎跟我一起討論 ^ ^
{}書寫Event觸發後的動作this 綁定為該component的methodonclick="function()"onClick={this.function}
this 綁定在 componentstate 中。event.target.property 來撈event中的資訊,例:event.target.name、event.target.value。this.setState({[event.target.name]:event.target.value}) 來更新 input 提供的值。(注意屬性名稱若為變數須以[]包住)value ,來提供內容。<textarea value={this.state.des} />
object 的方式呈現 stylestyle="background-color: red"style={{backgroundColor: "red"}}
import './mystyle.css' 方式輸入一般CSS文件import styles from './mystyle.module.css' 方式輸入 CSS Modules