React学习案例五
Posted hhh江月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React学习案例五相关的知识,希望对你有一定的参考价值。
React学习案例五
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
<script src="https://cdn.staticfile.org/react/16.4.0/umd/react.development.js"></script>
<script src="https://cdn.staticfile.org/react-dom/16.4.0/umd/react-dom.development.js"></script>
<script src="https://cdn.staticfile.org/babel-standalone/6.26.0/babel.min.js"></script>
</head>
<body>
<div id="example"></div>
<script type="text/babel">
class Clock extends React.Component
// 定义了一个类
render()
// 类的内部的函数
return (
// 返回值,这里的返回值是一个html的标签。
<div>
<h1>Hello, world!</h1>
<h2>现在是 this.props.date.toLocaleTimeString().</h2>
</div>
);
function tick()
ReactDOM.render(
<Clock date=new Date() />,
// 实例化了这个类
document.getElementById('example')
);
setInterval(tick, 1000);
// 调用函数
</script>
</body>
</html>
以上是关于React学习案例五的主要内容,如果未能解决你的问题,请参考以下文章