码迷,mamicode.com
首页 > 其他好文 > 详细

React程序结构介绍-Hello world

时间:2016-06-25 19:08:50      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

1,程序结构 JS(JSX)+HTML+CSS

2 首先在Sublime中创建一个html文件

   输入html:5  按Tab键自动生成基础代码

   默认语言是英文语言,修改lang="zh-cn"即为中文

   具体见一下代码:

 

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World!</title>

</head>
<body>
<script src="./react-0.13.2/react-0.13.2/build/react.js"></script>
<script src="./react-0.13.2/react-0.13.2/build/JSXTransformer.js"></script>
<script type="text/jsx">
var HelloWorld = React.createClass({
render: function () {
return <p>Hello, World</p>
}
});
React.render(<HelloWorld></HelloWorld>, document.body);
</script>
</body>
</html>

React程序结构介绍-Hello world

标签:

原文地址:http://www.cnblogs.com/lihfeiblogs/p/5616648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!