上传文件 隐藏input type="file",用其它标签实现

html:

     <a id="js-load-diagram" title="导入BPMN文件" onclick="bpmnFile.click()">
        上传文件
        <input type="file" id="bpmnFile" style="display:none">
      </a>

js:

$(‘#bpmnFile‘).on(‘change‘, function (e) {

});
时间: 2024-10-14 10:50:25

上传文件 隐藏input type="file",用其它标签实现的相关文章

隐藏&lt;input type=&quot;file&quot;&gt; 实现点击div或图片打开文件选择路径

HTML: <input type="file" style="display:none" id="addfile-btn"> <div onclick="addfile()">点击上传图片</div> JS: <script> function addfile() { document.getElementById("addfile-btn").click(

给上传文件的input控件&quot;美容&quot;

作为一名前端程序猿呢,在工作中经常会遇到form表单这种东西.然而表单的其他input控件样式还是很好改变的.但是,唯独input类型是file的文件上传控件可能就没那么好打扮的漂亮.刚好菜鸟我最近工作中也遇到了这个问题.解决以后想着人生在于总结.于是乎就把这个简单的demo记录下来. html代码 <form action=""method="post"enctype="multipart/form-data"> <a hre

给上传文件的input控件“美容”

在工作中经常会遇到form表单这种东西.然而表单的其他input控件样式还是很好改变的.但是,唯独input类型是file的文件上传控件可能就没那么好打扮的漂亮. demo: html代码 1 <body> 2 <form action="" method="post" enctype="multipart/form-data"> 3 <a href="#" class="a-uploa

直接获取上传文件的input值

js函数 <script> function m(i){ var url=i.value; url=url.split("\\"); var n = url[url.length-1]; n = n.substring(0,n.lastIndexOf('.')); document.getElementById('title').value = n; } </script> 资质描述<input type="text" name=&qu

hadoopmaster主机上传文件出错: put: File /a.txt._COPYING_ could only be replicated to 0 nodes instead of minReplication (=1). There are 3 datanode(s) running and 3 node(s) are excluded in this operation.

刚开始装好hadoop的时候,namenode机上传文件没有错误,今天打开时突然不能上传文件,报错 put: File /a.txt._COPYING_ could only be replicated to 0 nodes instead of minReplication (=1). There are 3 datanode(s) running and 3 node(s) are excluded in this operation. 上网查了一下,先把,nnamenode和datanod

利用jquery来隐藏input type=&quot;file&quot;

<li> <input type="text" name="token" value = "<?php ech$_SESSION['token']; ?>"> 头像:<input type="file" id="file" style="display:none;" name ="u_img" > <img src

上传文件时,将file对象,经过Qs.stringfly处理后,file文件被过滤

aa(event){//选择的excel文件 var file=event.target.files[0]; console.log(file); var reader = new FileReader(); reader.readAsBinaryString(file); reader.onload=(e=>{ var bb={lang:1,fileinfo:e.target.result,enen:2}; console.log(bb) var xx = Qs.stringify(bb);

html+css上传文件控件美化

html上传美化: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>上传文件</title> <style> label { position: relative; display: inline-block; background: #D0EEFF; border: 1px solid #9

SpringMVC上传文件的三种方式(转载)

直接上代码吧,大伙一看便知 这时:commonsmultipartresolver 的源码,可以研究一下 http://www.verysource.com/code/2337329_1/commonsmultipartresolver.java.html 前台: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 <%@ page language="java" contentTy