首页 > 代码库 > jquery css选择器

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...的元素

jquery css选择器