从jQuery对象中删除链接

时间:2011-12-21 18:36:14

标签: jquery html

我有一个关于jQuery的问题,我想从存储

的对象($ website)中删除以下内容
 $website.html().remove('a');

 $website.html() returns = egg street eggland eg1 <a href="random">
                                                       <img src=""></img>
                                                  </a>

如何删除元素及其内容?

我试过了

$website.remove('a');

但这似乎没有删除任何东西..

如果我完全错误的话,请你指点我正确的方向。

感谢

1 个答案:

答案 0 :(得分:6)

$('a', $website).remove(); // P00F

基本上找到包含$website的所有锚标签并将其删除。


反向(基于OP下面的评论):

$($website.children()).not('a').remove(); // P00F

基本上会找到$website锚标记的所有内容并将其删除。