3 回答
TA贡献1872条经验 获得超3个赞
我建议你使用模板文字
没有模板的例子
console.log('string text line 1\n' +
'string text line 2');
// Output be
// "string text line 1
// string text line 2"
模板示例
console.log(`string text line 1
string text line 2`);
// Output be
// "string text line 1
// string text line 2"
TA贡献1891条经验 获得超3个赞
如果您碰巧使用,JSX您实际上可以使用HTML.
使用功能组件:
function TermsAndConditions() {
return (
<div>
<p><strong>Paragraph in bold</stron></p>
<p>Normal paragraph</p>
</div>
);
}
function Footer() {
return <TermsAndConditions/>
};
ReactDOM.render(
<Footer/>,
document.getElementById('footer')
);
或者使用类组件:
function TermsAndConditions() {
return (
<div>
<p><strong>Paragraph in bold</stron></p>
<p>Normal paragraph</p>
</div>
);
}
class Footer extends React.Component {
render() {
return (
{this.props.message}
)
}
}
ReactDOM.render(
<Footer message={<TermsAndConditions/>}/>,
document.getElementById('footer')
);
添加回答
举报