jquery css选择器

1. $('node+next') == $('node').next()

2. $('node~siblings') == $('node').nextAll();

3. :gt(index)大于index序号的的元素,从0開始

4. :lt(index)小于index序号的元素,从0開始

4. :header 获取全部h1,h2,h3,h4...的元素

原文地址:https://www.cnblogs.com/mengfanrong/p/3760589.html