有一个html页面包含以下html并包含一个js文件
html:
<input type="text" name="customValue" id="customValue" value="">
.js 文件:
class Calc extends React.Component {
constructor() {
super();
}
render() {
return (99)
}
}
ReactDOM.render(<Calc />, document.getElementById("customValue"));
所以我的问题是如何使用 reactjs 将 customValue 设置为 99?
紫衣仙女
相关分类