我想知道是否有一种更好/更有效的方法来查找DOM中的父母兄弟和H1标签。 这是我正在使用的,它有效,但我敢打赌,这是一个更好的方法。
$(this).parent().parent().parent().parent().parent().siblings().find('h1').stop(true, true).fadeIn('slow');
答案 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/
示例代码参考