How to hide text field in Html File Upload

后端 未结 12 834
南旧
南旧 2020-12-01 06:50

I am wondering how to hide the text field portion of a standard html file upload tag

for example



        
12条回答
  •  不思量自难忘°
    2020-12-01 06:52

    You could possibly hide the whole element and show a button or link instead. This is rather easy.

    
    
    

    The file upload element is hidden. The button will fire the click event and shows the file browser window. On selecting a file, the change event is fired and this can submit a form or call a script function, whatsoever.

    Hope this helps...

提交回复
热议问题