是否有更好的方式进入DOM而不是这个?

时间:2013-08-23 07:33:59

标签: jquery dom parent

我想知道是否有一种更好/更有效的方法来查找DOM中的父母兄弟和H1标签。 这是我正在使用的,它有效,但我敢打赌,这是一个更好的方法。

$(this).parent().parent().parent().parent().parent().siblings().find('h1').stop(true, true).fadeIn('slow');

2 个答案:

答案 0 :(得分:3)

$(this).closest('h1').stop(true, true).fadeIn('slow');

这可能不是你所需要的,但.closest()和.parents()比链接.parent()调用更好地搜索DOM树。

答案 1 :(得分:0)

您可以在Nuget软件包的帮助下使用Html Agility Pack(HAP),也可以直接使用更多关于

的信息。

http://www.nuget.org/packages/HtmlAgilityPack

http://htmlagilitypack.codeplex.com/

示例代码参考

http://htmlagilitypack.codeplex.com/wikipage?title=Examples