JavaScript技巧

2007-9-22
  1.     清空上传控件中的值
             大家都知道清空一个控件的值用document.getElementById("**").value = ""就行,可是如果你把它应用到type="file"控件上就不行了,那么我们怎么做呢?其实也很简单:
      document.getElementById("**").select();
      document.execCommand("delete");
原文地址:https://www.cnblogs.com/xbf321/p/902586.html