首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

将input type=" file"取舍的文件内容清空

2012-11-07 
将input type file选择的文件内容清空上传文件时,选择了文件后想清空文件路径的两种办法:JS代码 input

将input type=" file"选择的文件内容清空
上传文件时,选择了文件后想清空文件路径的两种办法:

JS代码
<input type="file" id="fileupload" name="file" /> 

第一种: (display:none时不能用)

var obj = document.getElementById('fileupload') ;  
obj.select();  
document.execCommand("delete");


第二种:(无论display:none或block都可以用)

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

注:我经常使用第一种方法,第二种方法还没试过,呵呵

热点排行