摘要:
#list1 li:nth-of-type(odd){ background:#00ccff;}奇数行#list1 li:nth-of-type(even){ background:#ffcc00;}偶数行#list2 li:nth-child(4n+1){ background:#00ccff;}... 阅读全文
摘要:
length:length是JS原生的方法,用于获取元素的个数或者对象的长度,从1开始//用于获取对象的长度,从1开始var length = $("#uw3c").length;size():size()是jQuery中的方法,用来获取元素个数,从1开始。//用于获取对象的长度,从1开始var l... 阅读全文