点击验证码图片应该会刷新验证码,在谷歌下正常,但是在IE11下点击事件无效是什么情况
<Col
span={8}
onClick={this.getCaptcha.bind(this)}
style={
{ textAlign: 'right', marginTop: '-3px' }
}
>
<img src={captcha} alt="验证码" />
</Col >
getCaptcha = (captcha) => {
this.props.dispatch({
type: 'user/fetchCaptcha',
});
this.setState({
captcha,
});
}
给图片src加时间戳