vue 頁面使用原生態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;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章