gpt4 book ai didi

asp.net-mvc - 如何在 reactjs 中编写 onclick 事件?

转载 作者:行者123 更新时间:2023-12-04 22:06:15 25 4
gpt4 key购买 nike

这是我的代码这是简单的形式。我想在按钮点击时调用点击事件

 render: function () {
return (
<form className="commentForm">
<input
type="text"
placeholder="Your name"
value={this.state.author}
onChange={this.handleAuthorChange}
/>
<input
type="text"
placeholder="Say something..."
value={this.state.text}
onChange={this.handleTextChange}
/>
<input type="submit" value="Post" />
</form>
);

最佳答案

您忘记为 form 传递 onSubmit 事件

 render: function () {
return (
<form className="commentForm" onSubmit={this.submit}>
<input
type="text"
placeholder="Your name"
value={this.state.author}
onChange={this.handleAuthorChange}
/>
<input
type="text"
placeholder="Say something..."
value={this.state.text}
onChange={this.handleTextChange}
/>
<input type="submit" value="Post" />
</form>
);


submit: function() {
// do your stuff
}

关于asp.net-mvc - 如何在 reactjs 中编写 onclick 事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50596424/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com