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

相关文章:

  • 2022-12-23
  • 2021-11-13
猜你喜欢
  • 2022-01-22
  • 2021-11-03
  • 2021-08-17
相关资源
相似解决方案