全国统一服务热线:400-633-9193

js实现动态增加文件域表单功能

    网络     2018-11-19    1248

本文实例为大家分享了js实现动态增加文件域表单的具体代码,供大家参考,具体内容如下

实现代码:

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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html>
<head>
 <title>动态添加表单元素</title>
</head>
 
<script language="javascript">
 //全局变量,代表文件域的个数,并用该变量区分文件域的name属性
 var file_count = 0;
 //增加文件 域
 function additem(id) {
  if (file_count > 9) {
   alert("最多10个 ");
   return;
  }
  //定义行变量row;单元格变量cell;单元格内容变量str。
  var row, cell, str;
  //在指定id的table中插入一行
  row = eval("document.all[" + '"' + id + '"' + "]").insertRow();
  if (row != null) {
   //设置行的背景颜色
   row.bgColor = "white";
   //在行中插入单元格
   cell = row.insertCell();
   //设置str的值,包括一个文件域和一个删除按钮
   str = '<input onselectstart="return false" class="tf" onpaste="return false" type="file" name="file[' + file_count + ']" style="width:500px" onkeydown="return false;"/>';
   str += " <input type=" + '"' + "button" + '"' + " value=" + '"' + "删除" + '"' + " onclick='deleteitem(this," + '"' + "tb" + '"' + ");'>";
   //文件域个数增加
   file_count++;
   //设置单元格的innerHTML为str的内容
   cell.innerHTML = str;
  }
 }
 //删除文件域
 function deleteitem(obj, id) {
  var rowNum, curRow;
  curRow = obj.parentNode.parentNode;
  rowNum = eval("document.all." + id).rows.length - 1;
  eval("document.all[" + '"' + id + '"' + "]").deleteRow(curRow.rowIndex);
  file_count--;
 }
</script>
 
<body>
 <input type=button value="增加" onclick='additem("tb")' /><br/>
 <table cellspacing="0" id="tb" style="width:400px">
 </table>
 
</html>

以上就是本文的全部内容,希望对大家的学习有所帮助


  分享到:  
3.0528s