自定义input文件上传 file的提示文字及样式

Posted cat糯米团

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义input文件上传 file的提示文字及样式相关的知识,希望对你有一定的参考价值。

简单记录一下

效果图:

代码:

1 <input class="aload" type=\'button\' value=\'上传附件\' onClick=\'javascript:$("#hiddenFile").click();\' />
2 <input id=\'showFileName\' type=\'text\' readonly style="border: none;"/>&nbsp;&nbsp;
3 <input id=\'hiddenFile\' type=\'file\' style="display:none" onchange=\'ophiddenFile();\' />

js code:

1 function ophiddenFile() {
2    var dd = $("#hiddenFile").val().split("\\\\");
3     $("#showFileName").val(dd[dd.length - 1]);
4  }

 

以上是关于自定义input文件上传 file的提示文字及样式的主要内容,如果未能解决你的问题,请参考以下文章

自定义input[type=file]上传按钮样式的四种方案,你知道几种?

input[type='file']样式美化及实现图片预览

input[tyle="file"]样式修改及上传文件名显示

自定义input文件上传样式

上传文件控件的样式美化

关于自定义一个上传的file按钮