What does `a > b` mean?

前端 未结 4 818
无人及你
无人及你 2021-01-23 07:48

I\'m reading a tutorial about creating a shoutbox with jquery, php and ajax. In the jquery code, it creates a variable like this

var messageList = $(\".content &         


        
4条回答
  •  终归单人心
    2021-01-23 08:01

    It indicates the shoutbox should be applied to a "ul" thats the immediate child of ".content". Without the ">" symbol, it applies to any ul thats a child of .content

提交回复
热议问题