<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>hello world</title> </head> <body> <script type="text/javascript" src="http://cdn.bootcss.com/react/0.13.2/react.js"></script> <script type="text/javascript" src="http://cdn.bootcss.com/react/0.13.2/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>
注意咱們的第三個script的type類型爲text/jsx,注意HelloWorld的首字母大寫,咱們後面會說。javascript