html Hello React - ReactJs 1.3中的Hello World,不使用JSX
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Hello React - ReactJs 1.3中的Hello World,不使用JSX相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Hello React</title>
<script src="https://fb.me/react-with-addons-0.14.0.js"></script>
<script src="https://fb.me/react-dom-0.14.0.js"></script>
</head>
<body>
<script>
var HelloReact = React.createClass({
render: function() {
return React.DOM.h1(null, 'Hello React');
}
});
ReactDOM.render(React.createElement(HelloReact), document.body);
</script>
</body>
</html>
以上是关于html Hello React - ReactJs 1.3中的Hello World,不使用JSX的主要内容,如果未能解决你的问题,请参考以下文章
学了 Vue 还需要学 React 吗?
学了 Vue 还需要学 React 吗?
前端学习(3103):vue+element今日头条管理-hello-react案例
前端学习(3102):vue+element今日头条管理-hello-react案例
前端学习(3103):vue+element今日头条管理-hello-react案例
前端学习(3102):vue+element今日头条管理-hello-react案例