JavaScript技巧

2007-9-22
  1.     清空上传控件中的值
             大家都知道清空一个控件的值用document.getElementById("**").value = ""就行,可是如果你把它应用到type="file"控件上就不行了,那么我们怎么做呢?其实也很简单:
      document.getElementById("**").select();
      document.execCommand("delete");
posted @ 2007-09-22 16:30  兴百放  阅读(287)  评论(0编辑  收藏  举报