为了账号安全,请及时绑定邮箱和手机立即绑定

爲什麽提示target undefined啊

import React from "react";

class CommentBox extends React.Component {

constructor(props) {

super(props);

this.state = {

value: ""

};

}


handlechange(event) {

this.setState({ value: event.target.value })

}

handlesubmit(event) {

alert(this.state.value)

event.preventDefault()

}


render() {

return (

<form className="p-5" onSubmit={() => this.handlesubmit()}>

<div className="formgroup">

<label>留言内容</label>

<input

type="text"

className="form-control"

placeholder="請輸入内容"

value={this.state.value}

onChange={() => this.handlechange()}

/>

</div>

<button type="submit" className="btn btn-primary">

留言

</button>

</form>

);

}

}

export default CommentBox;


正在回答

4 回答

onChange={(event) => this.handlechange(event)},这个才对,上面有问题

1 回复 有任何疑惑可以回复我~

onChange={() => this.handlechange(event)},你的上个人也是这个问题

0 回复 有任何疑惑可以回复我~

没有绑定到this实例, 可以这么写 onChange={ this.handlechange.bind(this)} 

0 回复 有任何疑惑可以回复我~

onChange={ this.handlechange()}

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

爲什麽提示target undefined啊

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信