首页 > 其他 > 详细

how to clear file input field?

时间:2014-04-04 22:57:00      阅读:722      评论:0      收藏:0      [点我收藏+]

file input 用于在客户端浏览并上传文件,用户选取的路径可以由value属性获取,但value属性是只读的,不能通过 javascript 来赋值,这就使得不能通过value=""语句来清空它。因为,如果可以随意赋值的话,那么用户只要打开你的网页,你就可以随心所欲的上传他电脑上的文件了。为了清空file上传控件,我们可以利用form的reset属性


function clearFileInput(fileInput){

   //create a new form, then append it to body
   var form=document.createElement(‘form‘);
   document.body.appendChild(form);
   //remeber the position of file input in original html
   var pos=fileInput.nextSibling;

   //append file input to new form
   form.appendChild(fileInput);
   form.reset();

   //insert file to previous position
   pos.parentNode.insertBefore(fileInput,pos);
   document.body.removeChild(form);
}

本文出自 “六度空间” 博客,请务必保留此出处http://jasonwalker.blog.51cto.com/7020143/1390608

how to clear file input field?,布布扣,bubuko.com

how to clear file input field?

原文:http://jasonwalker.blog.51cto.com/7020143/1390608

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!