【发布时间】:2014-12-01 00:46:32
【问题描述】:
这些是我需要删除的一些输入字段,但我无法删除标签标签
<label class="prfx-row-title">Unique Selling Proposition </label>
<div class="prfx-row-content">
<input type="text" name="dynamic_usp[0][text]" placeholder="unique selling proposition " value="testing hello world" />
<span class="remove button">Remove USP</span>
</div>
$(".remove").live('click', function() {
$(this).parent().remove();
$(this).parent().prev('label.prfx-row-title').remove();
});
现在只删除了 div 而没有删除标签?
有人吗?
【问题讨论】:
-
live...哇...过去的爆炸。 (注意:live多年前已被弃用,至少一年前已被删除。) -
@T.J.Crowder 当我访问 SO 时,我几乎每天都会看到
.live():) 如果我没记错的话,它在 1.7 中已被弃用,并在 1.9 中被删除。
标签: javascript jquery html dom dom-manipulation