标签: jquery forms element elements
我有这样的表格: http://jsfiddle.net/michelejs/JrBrR/
如何在jquery中实现删除段落函数?
非常感谢。
答案 0 :(得分:2)
$("p").remove()应该做到这一点。在此处详细了解remove:
$("p").remove()
remove
jQuery Remove
答案 1 :(得分:2)
您可以使用jQuery的live方法绑定到段落的未来实例。对于每个新表单,您可以写:
$('.deleteButton').live(function(){ $(this).siblings('p').remove(); });
live与bind类似,但会对将来添加的任何元素起作用。 :)
live
bind