jquery 删除特定的子项
我有以下代码:
$('.TopNotificationIcon span').remove();
我可以将 .TopNotificationIcon
替换为 this
即仅 span
存在于这个特定类中。
这是结构
<div class="TopNotificationIcon"><span>xxxxx</span></div>
单击 .TopNotificationIcon
时,应删除 span
。
I have the following code :
$('.TopNotificationIcon span').remove();
Can I replace .TopNotificationIcon
with this
i.e only span
exists inside this specific class.
This is the structure
<div class="TopNotificationIcon"><span>xxxxx</span></div>
On click of .TopNotificationIcon
, span
should be removed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果您有
.TopNotificationIcon
的点击事件,您可以执行以下操作if you have click event for
.TopNotificationIcon
you can do something like this我会使用 find() 方法,因为它似乎是最快的:
I would use the find() method, as it seems to be the fastest:
如果你想删除 TopNotification 下的所有 span,你可以这样做:
它将删除 div 中的所有子元素。
If you want to remove all span under TopNotification you can do this :
It will remove all children in a div.
是的,但您需要将该行更改为:
js fiddle: http://jsfiddle.net/UNhhh/1/< /a>
Yes but youd need to change the line to:
js fiddle: http://jsfiddle.net/UNhhh/1/
试试这个...
这将删除具有 TopNotificationIcon 类的所有 span 元素以及子元素
Try this...
This will remove all span elements with the class TopNotificationIcon and also child elements