jQuery中$符号的作用作为jQuery包装器,利用选择器来选择DOM元素(这个也是最强大的功能)例如:$("table tr:nth-child(even)")实用工具函数,作为几个通用的实用工具函数的命名空间的前缀例如:$.trim(someString)文档就绪处理程序,相当于$(docum...
分类:
Web程序 时间:
2015-05-07 16:13:27
阅读次数:
194
类的概念一个类可以继承其它类的一切例:class Employee { String name; int age; float salary;}class Manager extends Employee{ String deparentName; int deparentNumber;}pub.....
分类:
编程语言 时间:
2015-05-06 17:10:21
阅读次数:
103
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 50649 Accepted Submission(s): 27934
Problem Description
The highest building in our...
分类:
其他好文 时间:
2015-05-06 15:10:09
阅读次数:
103
Elevator
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 50645 Accepted Submission(s): 27932
Problem Description
The highest bui...
分类:
编程语言 时间:
2015-05-06 13:16:42
阅读次数:
313
Given a linked list, remove the nth node from the end of list and return its head.For example,
Given linked list: 1->2->3->4->5, and n = 2.After removing the second node from the end, the linked li...
分类:
其他好文 时间:
2015-05-05 23:57:00
阅读次数:
301
https://leetcode.com/problems/remove-nth-node-from-end-of-list/Given a linked list, remove thenthnode from the end of list and return its head.For exa...
分类:
其他好文 时间:
2015-05-05 01:17:45
阅读次数:
166
题目在这里:https://leetcode.com/problems/remove-nth-node-from-end-of-list/【标签】 Linked List; Two Pointers【个人分析】 这个题目应该算是Linked List里面的基础题。说它基础不是因为它简单,而是因为它....
分类:
编程语言 时间:
2015-05-04 23:53:15
阅读次数:
172
nth-of-type(n)选择器“:nth-of-type(n)”选择器和“:nth-child(n)”选择器非常类似,不同的是它只计算父元素中指定的某种类型的子元素。当某个元素中的子元素不单单是同一种类型的子元素时,使用“:nth-of-type(n)”选择器来定位于父元素中某种类型的子元素是非...
分类:
Web程序 时间:
2015-05-04 22:04:22
阅读次数:
502
结构性伪类选择器—nth-child(n)“:nth-child(n)”选择器用来定位某个父元素的一个或多个特定的子元素。其中“n”是其参数,而且可以是整数值(1,2,3,4),也可以是表达式(2n+1、-n+5)和关键词(odd、even),但参数n的起始值始终是1,而不是0。也就是说,参数n的值...
分类:
Web程序 时间:
2015-05-04 22:01:51
阅读次数:
118
结构性伪类选择器—nth-last-child(n)“:nth-last-child(n)”选择器和前面的“:nth-child(n)”选择器非常的相似,只是这里多了一个“last”,所起的作用和“:nth-child(n)”选择器有所区别,从某父元素的最后一个子元素开始计算,来选择特定的元素。案例...
分类:
Web程序 时间:
2015-05-04 22:01:00
阅读次数:
213