⾃定义input⽂件上传file的提⽰⽂字及样式简单记录⼀下
inputtypefile不上传文件效果图:
代码:
1<input class="aload" type='button' value='上传附件' onClick='javascript:$("#hiddenFile").click();' />
2<input id='showFileName' type='text' readonly />
3<input id='hiddenFile' type='file' onchange='ophiddenFile();' />
js code:
1function ophiddenFile() {
2var dd = $("#hiddenFile").val().split("\\");
3 $("#showFileName").val(dd[dd.length - 1]);
4 }
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论