如何改变上传文件控件中的"浏览..."为别的文字?

来源:互联网 发布:杀破狼js高品质百度云 编辑:程序博客网 时间:2024/05/22 07:57

如何改变上传文件控件中的"浏览..."为别的文字?

probably   no   way,   but   you   could   hide   <input   type=file>,   use   your   own   button,   but   invoke   <input   type=file>   programmatically   with   javascript,   see  
  http://www.experts-exchange.com/Web/Web_Languages/HTML/Q_20396596.html  
   
  or  
   
  <form   name="test_form"   method="post">  
  <input   type=file   name=browse   style="display:   none;">  
  <input   type=text   name=file>  
  <input   type=button    
              style="font-style:veranda;   font-size:12px;   font-weight:bold;text-transform:lowercase;color:white;background-color:#A2C382;height:22px;border-style:ridge;text-align:center;"    
              onClick="browse.click();file.value=browse.value;browse.disabled=true"    
              value="Select   a   File...">                  
  <br><br>  
  <!--   must   be   clicked   twice   for   the   form   to   submit!   -->  
  <input   type=submit    
              value="Submit   The   Form   Now!"  
              style="font-style:veranda;   font-size:12px;">              
  </form>    

原创粉丝点击