jquery 两个具有相同类的不同触发器
我有两个标签,它们具有相同的类但不同的触发事件,以下是示例:
<a class="remove">remove this</a>
<div class="status"><a class="remove">Remove this status div only</a></div>
in jquery i have it like
$(".remove").live('click', function()... (this gets trigger for both)
$(".status_update > .remove").live('click', function()... (i want this to trigger for status div remove link)
我需要在两个不同的触发器中执行此操作,不能在同一个触发器调用中执行此操作。
i have two tag, which has same class but different trigger events, following is example:
<a class="remove">remove this</a>
<div class="status"><a class="remove">Remove this status div only</a></div>
in jquery i have it like
$(".remove").live('click', function()... (this gets trigger for both)
$(".status_update > .remove").live('click', function()... (i want this to trigger for status div remove link)
i need to do this in two different triggers, cant do it in same trigger call.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个
Try this
您可以使用 测试单击的锚点的父类名称是否为
.status
并进行相应操作.unwrap
或.remove
:You can test if the clicked anchor's parent's class name is
.status
and act accordingly, using either.unwrap
or.remove
: