首页 >web前端 >js教程 >把文件上传按钮修改成自己喜欢的样式

把文件上传按钮修改成自己喜欢的样式

一个新手
一个新手原创
2017-09-07 13:52:512049浏览

1.在模态框里写文件的上传
2.修改input为file的样式
  默认是“选择文件”,直接在后面显示文件的名字
  解决:修改样式
  方法如下:

  <form action="http://localhost:8080/GD/UploadAction_execute.action" method="post" enctype="multipart/form-data" name="uploadfile">
  <input type="file" name="my" id="file" value="浏览" style="display: none;"                      
   onchange="document.uploadfile.filePath.value=this.value"/>
  <input type="text" name="filePath" id="filePath"/>
  <input type="button" value="浏览..." onclick="document.uploadfile.my.click()"/><br>
  <input type="submit" value="上传" id="shangchuan">
  </form>


以上是把文件上传按钮修改成自己喜欢的样式的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn