我看到了这个选择器
$( '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
选择器