jquery动态添加input type="file"文本框

发布时间:2020-04-24编辑:脚本学堂
jquery动态添加input type="file"文本框的方法,在页面中动态添加input type=file文件上传文本框,页面上允许用户上传多个文件,来看看如何实现的。

在页面上允许用户上传多个文件,个数动态添加,也可以删除,jquery实现更轻松。

例子,动态添加<input type="file">:
 

复制代码 代码示例:

<!doctype html>
<html>
<head>
<title>jquery动态添加<input type="file">文本框_www.jb200.com</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javascript" src="jquery-1.6.4.min.js"></script>
<script type="text/javascript">
//添加一行<tr>
function add() {
var content = "<tr><td>";
content += "<input type='file' name='file'><input type='button' value='Remove' onclick='remove(this)'>";
content +="</td></tr>"
$("#fileTable").append(content);
}

//删除当前行<tr>
function remove(obj) {
$(obj).parent().parent().remove();
}
 </script>
</head>
<body>
 <form id="fileForm" action="" method="post" enctype="multipart/form-data">
<table id="fileTable">
<tr>
<td>
<input type="file" name="file"><input type="button" id="addButon" value="Add" onclick="add()">
</td>
</tr>
</table>
 </form>
</body>
</html>

效果示意:
jquery动态添加<input type="file">文本框