这里写目录标题 元素选择器id选择器.class选择器选取全部元素选取当前元素选取class为intro的p元素 元素选择器 $("p") id选择器 $("#test") .class选择器 $(".test") 选取全部元素 $("*") 选取当前元素 $("this") 选取class为intro的p元素 $("p.intro")