如何在使用文件上传时删除文本字段
这是我使用的代码。
<tr><td align="center" width="10%">06. </td><td width="30%" align="right">Upload group photo : </td><td width="30%" align="left" ><INPUT type="file" /></td></tr>
如果使用上面的代码,它会显示一个文本框和文件上传按钮
答案 0 :(得分:1)
试试这个
<input type="button" value="Browse.."
onclick="javascript:document.getElementById('imagefile').click();">
<input id="imagefile" type="file" style='visibility: hidden;' name="img" />
答案 1 :(得分:0)
我在其他网站上找到了可能的答案。这是链接:
HTML file upload without the text box
诀窍是使用带有透明<div>
的{{1}}。您可以根据需要设计<input>
,但是当您点击<div>
时,实际上会点击<div>
。希望它有所帮助。