最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Does an alternative to .closest() exist? - Stack Overflow

programmeradmin0浏览0评论

this is a snippet from my code:

$("#myid").append($("p:contains('text')").closest("div").clone());

I tried to get the first closest ancestor div-element of p containing 'text'.

I'm looking for an alternative to .closest() because I have to use jquery version 1.2.6. Do you have got an idea what I'm looking for?

I hope you can help me. I appreciate every hint, piece of code, etc..

this is a snippet from my code:

$("#myid").append($("p:contains('text')").closest("div").clone());

I tried to get the first closest ancestor div-element of p containing 'text'.

I'm looking for an alternative to .closest() because I have to use jquery version 1.2.6. Do you have got an idea what I'm looking for?

I hope you can help me. I appreciate every hint, piece of code, etc..

Share Improve this question edited Oct 26, 2010 at 13:38 twistery asked Oct 26, 2010 at 13:12 twisterytwistery 331 gold badge1 silver badge4 bronze badges 5
  • 1 both closest and perent climb up the dom tree – Brandon Frohbieter Commented Oct 26, 2010 at 13:14
  • from jquery.: .closest( selector ) Returns: jQuery Description: Get the first ancestor element that matches the selector, beginning at the current element and progressing up through the DOM tree. – John Boker Commented Oct 26, 2010 at 13:16
  • I see it now. Getting the first ancestor element that matches the selector it is then. Hm. – twistery Commented Oct 26, 2010 at 13:20
  • if your question has been answered, please mark it as Answered. thanks – Zain Shaikh Commented Oct 26, 2010 at 13:30
  • I'll mark it as answered asap ;-) – twistery Commented Oct 26, 2010 at 13:35
Add a ment  | 

1 Answer 1

Reset to default 13

$('p').parents('div:first')

should do :)

发布评论

评论列表(0)

  1. 暂无评论