jquery 中 first 与 first-child选择器的区别
例子 html: $("table tr:first") 得到的是第一个table 中的 第一个 tr对象 ; $("table tr:first-child") 得到的是每个table 中的 第一个 tr对象 ; $("body table:first) 得到的是第一个table r对象 ; $("bo