jquery选择器中的plus()是什么

前端之家收集整理的这篇文章主要介绍了jquery选择器中的plus()是什么前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我看到了这个选择器
$( 'a + .firstSection a' ).live( 'click',function(){

在我的js文件中.
这里标志的目的是什么?

解决方法

来自jquery doc:

Selects all next elements matching “next” that are immediately
preceded by a sibling “prev”. A selector to match the element that is
next to the first selector.

阅读更多关于prev + next选择器

原文链接:https://www.f2er.com/jquery/178654.html

猜你在找的jQuery相关文章