vue page uses the original ecological function JS

1.

'<img src="'+this.api + commonService.captchaImage + '" onclick="refreshCaptcha(this)"  style="margin-top:10px;border: 1px solid #b4bccc;cursor: pointer;" title="点击刷新" />'

2.

methods: {    
    refreshCaptcha(e){
        e.src = this.api + commonService.captchaImage + '?t=' + new Date().getTime();
        //document.getElementById('captcha').src = this.api + commonService.captchaImage + '?t=' + new    Date().getTime();
    },
}

3.

created() {    
    window.refreshCaptcha = this.refreshCaptcha;
}
Published 69 original articles · won praise 19 · views 240 000 +

Guess you like

Origin blog.csdn.net/tyjlearning/article/details/105148082