自接触js以来一直使用的是jquery插件,对js的了解甚少,经常容易混淆element.scrollHeight、element.scrollTop等方法。今天对这些方法做出比较。scrollTop:可以设置或者获取元素的已滚动的上部不可见区域的高度。 测试scrollHeight等的区别 ...
分类:
其他好文 时间:
2014-12-25 12:42:43
阅读次数:
115
本文首发博客园:http://jscode.cnblogs.com,转载请注明出处。 关于Element跟Node的区别,cilldren跟childNodes的区别很多朋友弄不清楚,本文试图让大家明白这几个概念之间的区别。 Node(节点)是DOM层次结构中的任何类型的对象的通用名称,Node.....
分类:
编程语言 时间:
2014-12-25 01:21:33
阅读次数:
142
“The content of element type "package" must match "(result-types?,interceptors?,default-interceptor-ref?,default-action-ref?,default-class-ref?,global...
分类:
其他好文 时间:
2014-12-24 20:06:33
阅读次数:
134
Majority ElementGiven an array of sizen, find the majority element. The majority element is the element that appears more than? n/2 ?times.You may ass...
分类:
其他好文 时间:
2014-12-24 19:59:18
阅读次数:
139
1 题目描述Given an array of sizen, find the majority element. The majority element is the element that appears more than? n/2 ?times.You may assume that t...
分类:
其他好文 时间:
2014-12-24 17:54:57
阅读次数:
147
类似这样的org.apache.cxf.binding.soap.SoapFault: Unexpected wrapper element,解决办法1:客户端和服务端包名改成一致的;办法2:客户端接口头部的@WebService加上服务端的命名空间,类似@WebService(targetName...
分类:
其他好文 时间:
2014-12-24 17:42:26
阅读次数:
190
使用Axis2调用CXF服务端Webservice方法时:
报错:Unmarshalling Error: unexpected element (uri:"http://ejb.fss.keyman.com", local:"xmldata"). Expected elements are
详细信息如下:
org.apache.axis2.AxisFault: Unmarshalli...
分类:
Web程序 时间:
2014-12-24 16:26:29
阅读次数:
731
题目描述:
A peak element is an element that is greater than its neighbors.
Given an input array where num[i] ≠ num[i+1], find a peak element and return its index.
The array may contain multiple...
分类:
其他好文 时间:
2014-12-24 13:32:13
阅读次数:
119
题目描述:
Given an array of size n, find the majority element. The majority element is the element that appears more than ?
n/2 ? times.
You may assume that the array is non-empty and the majori...
分类:
其他好文 时间:
2014-12-24 10:03:49
阅读次数:
120
在一个数组中找到主要的元素,也就是出现次数大于数组长度一半的元素。我想到的方法是1. 排序,然后扫描一次就知道了。总共nlgn2. 哈希,记录每个次数,O(n)的时间和空间。class Solution {public: int majorityElement(vector &num) { ...
分类:
其他好文 时间:
2014-12-23 23:59:58
阅读次数:
474