react语法

外壳

ReactDom.render(

<Comment Box/>

document.getElementById (content)

);

列表

var CommentList = React.createClass({

  render:function(){

    return(

    );

  }

});

表单

var CommentList = React.createClass({

  render:function(){

    return(

    );

  }

});

commentbox

var CommentList = React.createClass({

  render:function(){

    return(

      <div className="commentbox">111</div>

    );

  }

});

提交列表数据

var CommentList = React.createClass({

  render:function(){

    return(

      <div className="CommentList">

        <ul className="comment">

          <comment author="小明">最近好吗</comment>

        </ul>

      </div>  

    );

  }

});

var comment = React.createClass ({

  render: function() {

    return (

      <li className="Comment Author">trent{this.props.author}:{this.props.children}hello</li>

        );

      }

    });

 

posted on   aivnfjgj  阅读(101)  评论(0编辑  收藏  举报

导航

< 2025年1月 >
29 30 31 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 1
2 3 4 5 6 7 8

统计

点击右上角即可分享
微信分享提示