有時候需要在頁面上允許使用者上傳多個文件,個數由使用者自己決定,個數多了也可以刪除,使用jQuery可以很簡單的實作這個功能。
先給大家展示下效果圖:
" src="https://img.php.cn/upload/article/000/000/013/f187c49b58a89f7220e072b8c98dfa73-0.jpg" style="max-width:90%" style="max-width:90%" title="jQuery动态添加">先給大家展示下效果圖:
<!DOCTYPE html>
<html>
<head>
<title>test.html</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>
介紹JQueryr新增相關文章請追蹤PHP中文網!