欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

vue 清空input標(biāo)簽 中file的值操作

 更新時(shí)間:2020年07月21日 11:29:18   作者:PiscesGirla  
這篇文章主要介紹了vue 清空input標(biāo)簽 中file的值操作,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧

template中:

<input type="file" ref="pathClear" @change="onUpload" name="file" id="file">

methods中:

onUpload(){
this.$refs. pathClear.value =''
},

補(bǔ)充知識(shí):將input file的選擇的文件清空的兩種解決方案

上傳文件時(shí),選擇了文件后想清空文件路徑,搜索了一下,用兩種方法解決

第一種

var obj = document.getElementById(‘fileupload') ;
obj.select();
document.selection.clear();

第二種

var obj = document.getElementById(‘fileupload') ;

obj.outerHTML=obj.outerHTML;

以上這篇vue 清空input標(biāo)簽 中file的值操作就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論