gpt4 book ai didi

javascript - onclick 函数在 reactjs 中不起作用

转载 作者:行者123 更新时间:2023-11-30 20:36:09 25 4
gpt4 key购买 nike

我是reactjs的新手,练习了一些代码但是在onclick函数上出现了一些错误(错误是函数没有执行),谁能帮忙找出我做的错误,这是我的代码

import React, { Component } from "react";

class Hello extends Component {
constructor(props) {
super(props);

this.state = {
time: Date.now()
};

this.changeTime = this.changeTime.bind(this);
}

changeTime() {

alert('hi');
this.setState({
time: Date.now()
});
}

render() {
return (
<div>
<center>
<h3>Current Time : {this.state.time}</h3>
<br />
<button onlcick={this.changeTime}>Change Time </button>
</center>
</div>
);
}
}

export default Hello;

最佳答案

应该是<button onClick={this.changeTime}>Change Time </button>

不是<button onlcick={this.changeTime}>Change Time </button>

关于javascript - onclick 函数在 reactjs 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49816010/

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