【发布时间】:2016-10-01 01:30:15
【问题描述】:
https://jsbin.com/nisetupaqa/edit?html,js,console,output
var App = React.createClass({
render(){
return(
<h1>Hello world</h1>
)
}
})
ReactDOM.render(<App />,getElementById('app-container'));
怎么了?无法让 hello world 正常工作,我收到了 "ReferenceError: getElementById is not defined 的错误
【问题讨论】:
标签: javascript reactjs