动态添加的对象,其事件也要动态绑定!
<!DOCTYPE html><html>
<head>
<meta charset="UTF-8">
<title>添加与删除</title>
<script src="js/jquery-1.8.3.min.js"></script>
<script>
var n=1
$(function(){
$("button").click(function(){
var btn=$("<input type='button' value='删除'/>")
btn.click(function(){
$(this).closest("tr").remove()
})
$("tbody").append($("<tr><td>"+n+"</td><td>新添加的表格</td></tr>").append($("<td></td>").append(btn)))
n++
})
})
</script>
</head>
<body>
<button>添加表格</button>
<table border="1px">
<tbody>
</tbody>
</table>
</body>
</html>
因为clone()的表单name属性都一样后台取参数要用
String[] names = request.getParamterValues("name")
这种方式接收到的是表单内容数组
如果用
request.getParamter("name")
只接收一个值
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)