react 入门(2)

constructor

constructor(props){
        super(props)
        //不要这样做
        //可以直接使用 this.props.color
        this.state = { color: props.color };
}

JSX中的html解析问题 dangerouslySetInnerHTML

render(){
        const html = '

一行白鹭上青天

'; return (
) }

htmlFor


 

className

className 属性用于指定 CSS 的 class,此特性适用于所有常规 DOM 节点和 SVG 元素,如

你可能感兴趣的:(react 入门(2))