只需一步,快速开始
签到天数: 372 天
[LV.9]以坛为家II
// 未传值
ReactDOM.render(
<WebShow />,
document.getElementById(
"container"
)
);
// 传值
<WebShow wname=
"Sian"
wlink=
"http://www.yusian.com"
/>,
var
WebShow = React.createClass({
render:
function
(){
return
(
<div>
<WebName webname={
this
.props.wname} />
<WebLink weblink={
.props.wlink} />
</div>
}
});
WebName = React.createClass({
<h1>{
.props.webname}</h1>;
WebLink = React.createClass({
<a href={
.props.weblink}>{
.props.weblink}</a>;
使用道具 举报
本版积分规则 发表回复 回帖后跳转到最后一页
手机版|小黑屋|Archiver|iOS开发笔记 ( 湘ICP备14010846号 )
GMT+8, 2025-4-9 22:56 , Processed in 0.044954 second(s), 18 queries .
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.