jQuery动态添加 input type=file的实现代码
程序员文章站
2022-04-14 12:35:30
...
<form id="fileForm" action="" method="post" enctype="multipart/form-data"> <tr> <td> <input type="file" name="file"><input type="button" id="addButon" value="Add" onclick="add()"> </td> </tr> </form>
核心jquery代码
//添加一行<tr> function add() { var content = "<tr><td>"; content += "<input type='file' name='file'><input type='button' value='Remove' onclick='remove(this)'>"; content += "</td></tr>" $("#fileForm").append(content); } //删除当前行<tr> function remove(obj) { $(obj).parent().parent().remove(); }
更多jQuery动态添加 input type=file的实现代码相关文章请关注PHP中文网!
推荐阅读
-
在Android中动态添加Panel框架的实现代码
-
为radio类型的INPUT添加客户端脚本(附加实现JS来禁用onClick事件思路代码)
-
jQuery实现动态添加、删除按钮及input输入框的方法
-
jQuery实现动态添加和删除input框实例代码
-
jQuery实现为动态添加的元素绑定事件实例分析
-
一个不错的给图片添加说明文字的动态层的实现代码
-
jQuery实现动态添加和删除input框代码实例
-
jQuery中的RadioButton,input,CheckBox取值赋值实现代码
-
基于Bootstrap和JQuery实现动态打开和关闭tab页的实例代码
-
在Android中动态添加Panel框架的实现代码