当前位置:  开发笔记 > 前端 > 正文

jquery在标题之后选择任何第一个p元素是否还存在另一个元素

如何解决《jquery在标题之后选择任何第一个p元素是否还存在另一个元素》经验,为你挑选了1个好方法。

我试图改变h2或h3元素之后的第一个p元素,无论是否存在其他元素.

所以html就是这样

This is the subhead in use

Here is some lipsum orum kind of textHere is some lipsum orum kind of textHere is some lipsum orum kind of textHere is some lipsum orum kind of textHere is some lipsum orum kind of text

Here is some lipsum orum kind of textHere is some lipsum orum kind of textHere is some lipsum orum kind of textHere is some lipsum orum kind of textHere is some lipsum orum kind of text

This is the subhead in use

Here is some lipsum orum kind of text

和一些jquery(2.13)

$(function(){
  $('h3, h2').next('p').css({ "color":"green"});    
});

因此,这会在h3或h3标记之后找到第一个p,但如果中间还有另一个元素则找不到它.并不总是,但有时我会想要一个img,div或figure元素和h2或h3,但仍然希望jquery找到第一个p(在上面的代码中,它失败了)

我已经尝试了许多选择器和方法的组合,包括p:first-of-type,siblings,nextAll等.我想这样做而不需要在html部分的第一个p元素中添加一个类.

请帮忙.



1> Josh Crozier..:

它没有按预期工作,因为.next('p')只会选择紧接着的p元素.您可以使用该.nextAll()方法选择以下所有p元素(不仅仅是紧随其后的元素),然后链接.first()方法以获取集合中的第一个匹配项:

这里的例子

$('h3, h2').each(function () {
  $(this).nextAll('p').first().css({ "color":"green"});
});

推荐阅读
郑小蒜9299_941611_G
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有